Skip to content
Snippets Groups Projects
Commit b67d3bb3 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Avoid a warning.

parent dfbe3a12
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ sub run {
# note currently we ignore all the other cross-references in the IPI file
# only interested in species with the taxonomy ID were looking for
next if ($tax_id != $species_tax_id);
next if ( !defined $tax_id || $tax_id != $species_tax_id );
# make sequence into one long string
$sequence =~ s/\n//g;
......
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