Thomas 1 year ago
parent
commit
717bffd29f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/cases.rs

+ 2 - 2
src/cases.rs

@@ -21,7 +21,7 @@ use std::{
 use rand::seq::IteratorRandom;
 use rust_htslib::bam;
 
-#[derive(Debug)]
+#[derive(Debug, Clone)]
 pub struct Cases {
     pub cases: Vec<Case>,
     pub config: Config,
@@ -121,7 +121,7 @@ impl DerefMut for Cases {
     }
 }
 
-#[derive(Debug)]
+#[derive(Debug, Clone)]
 pub struct Case {
     pub id: String,
     pub diag_bam: Bam,