Skip to content
Snippets Groups Projects
Commit 43e7131b authored by Thiago Genez's avatar Thiago Genez Committed by Natalie Willhoft
Browse files

fixing variable declaration

parent 1e50467c
No related branches found
No related tags found
No related merge requests found
......@@ -331,7 +331,7 @@ my $json3 = json_GET(
'Gene-tree (ncRNA) by species and ID. Explicitly require the default clusterset_id',
);
is(count_leaves($json3->{tree}), 69, 'Got all the leaves (query by species and gene ID)');
($human_leaf) = find_leaf($json3->{'tree'}, 'ENSG00000176515');
my ($human_leaf) = find_leaf($json3->{'tree'}, 'ENSG00000176515');
is($human_leaf->{'branch_length'}, '0.1', 'Got the right branch-length (query by species and gene ID)');
my $json4 = json_GET(
......
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