You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm wondering if this is inclusive or exclusive. If the block starts from position 1 and length is 1 base, its start and end should be 1 - 2, and 2 is NOT closed which is exclusive.
This may cause some comparison error in GTF.cpp#intersectPoint(const Feature &a, const coord x) where it always compares equity.
Thank you for any suggestions here!
Zheng
The text was updated successfully, but these errors were encountered:
Hi,
I just noticed that in Expression.cpp#extractBlocks method, the line that calculates the end position of alignment block is:
block.end = start + current.Length(); // 1-based, closed
I'm wondering if this is inclusive or exclusive. If the block starts from position 1 and length is 1 base, its start and end should be 1 - 2, and 2 is NOT closed which is exclusive.
This may cause some comparison error in GTF.cpp#intersectPoint(const Feature &a, const coord x) where it always compares equity.
Thank you for any suggestions here!
Zheng
The text was updated successfully, but these errors were encountered: