Skip to content

Commit

Permalink
adding debug to Cli struct for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wdecoster committed Mar 27, 2024
1 parent 3b9bbcd commit bde405e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/genotype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ mod tests {
threads: 1,
sample: None,
haploid: None,
debug: false,
};
let mut bam = parse_bam::create_bam_reader(&args.bam, &args.fasta);
let genotype = genotype_repeat(&repeat, &args, &mut bam);
Expand Down Expand Up @@ -411,6 +412,7 @@ mod tests {
threads: 1,
sample: None,
haploid: Some(String::from("chr7")),
debug: false,
};
let mut bam = parse_bam::create_bam_reader(&args.bam, &args.fasta);
let genotype = genotype_repeat(&repeat, &args, &mut bam);
Expand All @@ -433,6 +435,7 @@ mod tests {
threads: 1,
sample: None,
haploid: None,
debug: false,
};
let repeat = crate::repeats::RepeatInterval {
chrom: String::from("chr7"),
Expand Down Expand Up @@ -460,6 +463,7 @@ mod tests {
threads: 1,
sample: None,
haploid: None,
debug: false,
};
let repeat = crate::repeats::RepeatInterval {
chrom: String::from("chr7"),
Expand Down Expand Up @@ -487,6 +491,7 @@ mod tests {
threads: 1,
sample: None,
haploid: None,
debug: false,
};

let repeat = crate::repeats::RepeatInterval {
Expand Down

0 comments on commit bde405e

Please sign in to comment.