Skip to content
Snippets Groups Projects
Commit 71c57a41 authored by Arne Stabenau's avatar Arne Stabenau
Browse files

added species test

parent 54f9f5a6
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ use warnings;
BEGIN { $| = 1;
use Test;
plan tests => 26;
plan tests => 27;
}
use MultiTestDB;
......@@ -50,7 +50,9 @@ ok( $gene->start() == 30735607 );
debug( "Gene end: ".$gene->end );
ok( $gene->end() == 30815178 );
my $species = $gene->species()->binomial();
debug( "Species: ".$species );
ok( $species eq "Homo sapiens" );
my $links = $gene->get_all_DBLinks();
debug( "Links: ".scalar( @$links ));
......
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