Skip to content

Commit

Permalink
Merge pull request #824 from Gaius-Augustus/fix_compute_acc
Browse files Browse the repository at this point in the history
fixed pseudo gene removal in evaluation script
  • Loading branch information
KatharinaHoff authored May 13, 2024
2 parents 3f1f9b4 + b13be98 commit 35280d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/compare_intervals_exact.pl
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ sub RemoveOverlapping
while( $i < $size_aa && $j < $size_bb )
{
# i.R < j.L
if ( $aa->{$key}[$i][1] < $bb->{$key}[$j][1] )
if ( $aa->{$key}[$i][1] < $bb->{$key}[$j][0] )
{
$i += 1;
next;
Expand Down

0 comments on commit 35280d0

Please sign in to comment.