Skip to content
Snippets Groups Projects
Commit aae5aafa authored by Jeremy Henty's avatar Jeremy Henty
Browse files

Backed out the previous change - inappropriate for HEAD.

parent 296112ae
No related branches found
No related tags found
No related merge requests found
......@@ -2061,41 +2061,6 @@ sub get_all_Transcripts {
}
=head2 get_all_TranscriptBestSupportingFeatures
Arg [1] : (optional) string $logic_name
the logic name of the type of features to obtain
Arg [2] : (optional) string $db_type
Example : @transcripts = @{$slice->get_all_TranscriptBestSupportingFeatures};
Description: Gets the best supporting align features for each exon
in any transcript which overlaps this slice.
Returntype : reference to a list of Bio::EnsEMBL::BaseAlignFeatures
Exceptions : none
Caller : general
Status : Development
=cut
sub get_all_TranscriptBestSupportingFeatures {
my $self = shift;
my $load_exons = 1;
my $logic_name = shift;
my $dbtype = shift;
if(!$self->adaptor()) {
warning('Cannot get Transcripts without attached adaptor');
return [];
}
# debugging
my $method = "get_all_TranscriptBestSupportingFeatures";
die sprintf "%s::%s()\nDied", __PACKAGE__, $method;
my $transcripts = $self->get_all_Transcripts($load_exons, $logic_name, $dbtype);
return;
}
=head2 get_all_Exons
Arg [1] : none
......
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