1 2 3 4 5 6 7 8 9 10 11 12
use crate::utils::input_bam::InputBam; use clap::Args; #[derive(Args, Debug)] pub struct BenchmarkOptions { #[clap(flatten)] pub input: InputBam, /// Region to benchmark (format: chr:start-end) #[clap(short, long)] pub region: Option<String>, }