Skip to content

Commit

Permalink
fix: No unfiltered files shouldn't always fail (#122)
Browse files Browse the repository at this point in the history
* fix: No unfiltered files shouldn't always fail
  • Loading branch information
adthrasher authored Jan 23, 2024
1 parent 366000e commit 1eb1fb2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/scripts/annotate.pl
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@
`cat $out_dir/*/unfiltered.internal.txt > $unfiltered_file`;
if ($?){
my $err = $!;
print STDERR "Error combining internal events: $err\n";
exit 2;
print STDERR "Warning: combining internal events failed: $err\n";
print STDERR "No events may be a valid result.\n";
}
}
}
Expand All @@ -184,8 +184,8 @@
`cat $out_dir/*/unfiltered.fusion.txt > $unfiltered_file`;
if ($?){
my $err = $!;
print STDERR "Error combining fusion events: $err\n";
exit 3;
print STDERR "Warning: combining fusion events failed: $err\n";
print STDERR "No events may be a valid result.\n";
}
}
}
Expand Down

0 comments on commit 1eb1fb2

Please sign in to comment.