Skip to content
Snippets Groups Projects
Commit 0309a651 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Added new list_dbIDs method.

parent e870f362
No related branches found
No related tags found
No related merge requests found
......@@ -471,5 +471,21 @@ sub remove {
}
=head2 list_dbIDs
Arg [1] : none
Example : @feature_ids = @{$prediction_transcript_adaptor->list_dbIDs()};
Description: Gets an array of internal ids for all prediction transcript features in the current db
Returntype : list of ints
Exceptions : none
Caller : ?
=cut
sub list_dbIDs {
my ($self) = @_;
return $self->_list_dbIDs("prediction_transcript");
}
1;
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