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

When looking for exonerate output files, don't treat an empty file as

"missing".
parent bcb22783
No related branches found
No related tags found
No related merge requests found
......@@ -459,7 +459,7 @@ sub run_exonerate {
# check that output file exists
my $outfile = "$dump_path/exonerate_map.$i";
push @missing, $outfile unless (-s "$outfile");
push @missing, $outfile unless (-f "$outfile");
# check no errors occurred
my $errfile = "$logpath/exonerate.$i.err";
......
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