Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions combineAndAnnotateReferences.pl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
{
my $thisNode_rank = $taxonomy_href->{$taxonID}{rank};
die unless(defined $thisNode_rank);
unless(($thisNode_rank eq 'species') or ($thisNode_rank eq 'no rank') or ($thisNode_rank eq 'subspecies') or ($thisNode_rank eq 'varietas'))
unless(($thisNode_rank eq 'species') or ($thisNode_rank eq 'no rank') or ($thisNode_rank eq 'subspecies') or ($thisNode_rank eq 'varietas') or ($thisNode_rank eq 'strain') or ($thisNode_rank eq 'isolate'))
{
die Dumper("Unexpected rank", $thisNode_rank, $taxonID, $taxonID_2_files{$taxonID});
}
Expand Down Expand Up @@ -247,4 +247,4 @@ sub print_help
);

exit;
}
}