Skip to content

Commit

Permalink
Update lib/Bio/EnsEMBL/DataCheck/Checks/ExonBounds.pm
Browse files Browse the repository at this point in the history
Accepted, it's clearer that way.

Co-authored-by: Luca Da Rin Fioretto <radome@gmail.com>
  • Loading branch information
marcoooo and luca-drf committed Dec 24, 2020
1 parent 362e804 commit 51a6d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Bio/EnsEMBL/DataCheck/Checks/ExonBounds.pm
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ sub tests {

if (defined $last_transcript_id && $last_transcript_id == $transcript_id) {
if ($strand == 1) {
if ($last_end > $start && $last_start < $start) {
if ($last_start < $start && $start < $last_end) {
push(@exon_overlaps, "Exons $last_exon_id and $exon_id overlap ($last_end > $start)");
}
} else {
Expand Down

0 comments on commit 51a6d54

Please sign in to comment.