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

Added list_dbIDs method.

parent 6078c3b5
No related branches found
No related tags found
No related merge requests found
......@@ -293,7 +293,23 @@ sub _objs_from_sth {
return \@features;
}
=head2 list_dbIDs
Arg [1] : none
Example : @feature_ids = @{$dna_align_feature_adaptor->list_dbIDs()};
Description: Gets an array of internal ids for all dna align features in the current db
Returntype : list of ints
Exceptions : none
Caller : ?
=cut
sub list_dbIDs {
my ($self) = @_;
return $self->_list_dbIDs("dna_align_feature");
}
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