Skip to content
Snippets Groups Projects
Commit 6a0fe81f authored by Graham McVicker's avatar Graham McVicker
Browse files

undo fix to already fixed method

parent 4caed4dc
No related branches found
No related tags found
No related merge requests found
......@@ -1156,7 +1156,6 @@ sub five_prime_utr {
my $self = shift;
my $seq = substr($self->spliced_seq, 0, $self->cdna_coding_start - 1);
CORE::length($seq) or return;
return undef if(!$seq);
......@@ -1171,7 +1170,6 @@ sub three_prime_utr {
my $self = shift;
my $seq = substr($self->spliced_seq, $self->cdna_coding_end);
CORE::length($seq) or return;
return undef if(!$seq);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment