Skip to content

Commit

Permalink
fix gap coordinate bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chienchi committed Sep 22, 2015
1 parent 7c53eaa commit 0c73c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PhaME.pm
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ foreach my $begin (sort{$a<=>$b} keys %CDS){
$last=$end;
}
if ($last < $source_end){
$gap_start = $end+1;
$gap_start = $last+1;
print OUT "$name\t$gap_start\t$source_end\tnoncoding\n";
}
}
Expand Down

0 comments on commit 0c73c8b

Please sign in to comment.