Skip to content

Commit

Permalink
Warn, don't die, if a complex ID is unknown
Browse files Browse the repository at this point in the history
Refs #1243
  • Loading branch information
kimrutherford committed Dec 10, 2024
1 parent 7243ade commit 4b7cf32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/process_complex_portal_data.pl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
if (defined $pombe_id) {
print $pombe_to_complex_id_mapping_file "$pombe_id\t$complex_portal_acc\t$complex_portal_pubmed_id\n";
} else {
die "$complex_portal_filename:$.: can't find pombe ID for $1\n";
warn "$complex_portal_filename:$.: can't find pombe ID for $1\n";
}
}
} else {
Expand Down

0 comments on commit 4b7cf32

Please sign in to comment.