Thomas 8 ヶ月 前
コミット
87a576356b
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/pipes/somatic.rs

+ 1 - 1
src/pipes/somatic.rs

@@ -303,7 +303,7 @@ impl Run for SomaticPipe {
         });
 
         let n_masked_lowqual = annotations.retain_variants(&mut variants_collections, |anns| {
-            !anns.contains(&Annotation::LowMAPQ)
+            anns.contains(&Annotation::LowMAPQ)
         });
         info!("N low mapq filtered: {}", n_masked_lowqual);