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

added get_all_translateable_Exons method to PredictionTranscript for consistancy w/ Transcript

parent bc22a08b
No related branches found
No related tags found
No related merge requests found
......@@ -327,6 +327,27 @@ sub get_all_Exons {
return $self->{'exons'};
}
=head2 get_all_translateable_Exons
Arg [1] : none
Example : $exons = $self->get_all_translateable_Exons
Description: Retreives the same value of get_all_Exons for this prediction
transcript. In a prediction transcript there is no UTR and
thus all exons are entirely translateable.
Returntype : listref of Bio::EnsEMBL::Exon
Exceptions : none
Caller : Embl_Dumper
=cut
sub get_all_translateable_Exons {
my $self = shift;
return $self->get_all_Exons;
}
############################################################
......
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