소스 검색

filter mapq

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);