Thomas 1 месяц назад
Родитель
Сommit
a1ab3e9dc6
2 измененных файлов с 2 добавлено и 0 удалено
  1. 1 0
      src/pipes/somatic.rs
  2. 1 0
      src/variant/variants_stats.rs

+ 1 - 0
src/pipes/somatic.rs

@@ -318,6 +318,7 @@ impl Run for SomaticPipe {
         //     info!("\t - {} {}: {}", coll.vcf.caller, coll.vcf.time, rm);
         //     info!("\t - {} {}: {}", coll.vcf.caller, coll.vcf.time, rm);
         // });
         // });
 
 
+        println!("mlfjs");
         // MASK mapq
         // MASK mapq
         let (mut high_depth_ranges, mut low_quality_ranges) =
         let (mut high_depth_ranges, mut low_quality_ranges) =
             somatic_depth_quality_ranges(&id, &config)?;
             somatic_depth_quality_ranges(&id, &config)?;

+ 1 - 0
src/variant/variants_stats.rs

@@ -575,6 +575,7 @@ pub fn somatic_depth_quality_ranges(
     id: &str,
     id: &str,
     config: &Config,
     config: &Config,
 ) -> anyhow::Result<(Vec<GenomeRange>, Vec<GenomeRange>)> {
 ) -> anyhow::Result<(Vec<GenomeRange>, Vec<GenomeRange>)> {
+    println!("somatic_depth_quality_ranges");
     // chr1..chr22 + X,Y,M
     // chr1..chr22 + X,Y,M
     let contigs: Vec<String> = read_dict(&config.dict_file)?
     let contigs: Vec<String> = read_dict(&config.dict_file)?
         .into_iter()
         .into_iter()