Thomas il y a 7 mois
Parent
commit
a030758c33
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      src/config.rs

+ 2 - 0
src/config.rs

@@ -79,6 +79,7 @@ pub struct Config {
     pub panels: Vec<(String, String)>,
     pub cpg_bed: String,
     pub max_depth_low_quality: u32,
+    pub bam_composition_sample_size: u32,
 }
 
 // Here comes names that can't be changed from output of tools
@@ -118,6 +119,7 @@ impl Default for Config {
 
             bam_min_mapq: 40,
             bam_n_threads: 150,
+            bam_composition_sample_size: 20_000,
 
             db_cases_path: "/data/cases.sqlite".to_string(),