Skip to content

Commit

Permalink
Fixed bug in indelCaller_step1.pl
Browse files Browse the repository at this point in the history
Changed bitwise OR to logical OR
  • Loading branch information
fa8sanger authored Sep 11, 2023
1 parent f327d47 commit 47fc158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perl/indelCaller_step1.pl
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
next if($bulk_fwd + $bulk_rev < $bulk_min_cov); # Bulk minimum coverage
next if($dplxCLIP > $max_clip);
next if($dplxNM > 20); # made very liberal to allow long indels. Check the impact!
next if($dplxASXS < $min_asxs | $bulkASXS < $min_asxs ); #fa8: fixed bug, we needed to check AS-XS for the bulk too
next if($dplxASXS < $min_asxs || $bulkASXS < $min_asxs ); #fa8: fixed bug, we needed to check AS-XS for the bulk too

if($r1 >= $min_size_subfam && $r2 >= $min_size_subfam) {
my $bulktotal = $bulkForwardTotal+$bulkReverseTotal;
Expand Down

0 comments on commit 47fc158

Please sign in to comment.