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
While using Pegasus, I think that I encountered a bug relating to exonic breakpoints. Currently if a breakpoint is in an exon, it will not enter the if statement block on line 1612 because the breakpoint position will not be greater than that exon’s end position. This causes none of that exon’s coordinates to be returned, making the previous exon the last exon whose data is returned.
Line 1612 could likely be fixed by replacing “l.end()” with “l.start()”. It is possible that there are similar errors elsewhere in the code.
In my limited testing, this bug only pertains to exonic breakpoints and not intronic breakpoints.
While using Pegasus, I think that I encountered a bug relating to exonic breakpoints. Currently if a breakpoint is in an exon, it will not enter the if statement block on line 1612 because the breakpoint position will not be greater than that exon’s end position. This causes none of that exon’s coordinates to be returned, making the previous exon the last exon whose data is returned.
Line 1612 could likely be fixed by replacing “l.end()” with “l.start()”. It is possible that there are similar errors elsewhere in the code.
In my limited testing, this bug only pertains to exonic breakpoints and not intronic breakpoints.
source/java_modules/FusionSequenceFromGTF/src/FusionSequenceFromGTF/FusionSequenceFrom
Pegasus/source/java_modules/FusionSequenceFromGTF/src/FusionSequenceFromGTF/FusionSequenceFromGTF.java
Lines 1606 to 1636 in f37b564
The text was updated successfully, but these errors were encountered: