Skip to content
Snippets Groups Projects
Commit 09e829ee authored by Alessandro Vullo's avatar Alessandro Vullo
Browse files

[ENSCORESW-667]. Return empty anonymous array in case _ise_array attribute is undefined.

parent 6f91e9bf
No related branches found
No related tags found
No related merge requests found
......@@ -1481,7 +1481,7 @@ sub get_all_IntronSupportingEvidence {
my $isea = $self->adaptor()->db()->get_IntronSupportingEvidenceAdaptor();
$self->{_ise_array} = $isea->fetch_all_by_Transcript($self);
}
return $self->{_ise_array};
return $self->{_ise_array} || [];
}
......
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