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

Added tests for new list_ functions.

parent c8ee8cd5
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,14 @@ ok( $translates );
my $ta = $db->get_TranscriptAdaptor();
debug ("Transcript->list_dbIDs");
my $ids = $ta->list_dbIDs();
ok (@{$ids});
debug ("Transcript->list_stable_dbIDs");
my $stable_ids = $ta->list_stable_dbIDs();
ok (@{$stable_ids});
my $tr = $ta->fetch_by_stable_id( "ENST00000217347" );
ok( $tr );
......
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