fibertools_rs/cli/decorator_opts.rs
1use crate::utils::input_bam::InputBam;
2use clap::Args;
3use std::fmt::Debug;
4
5#[derive(Args, Debug)]
6pub struct DecoratorOptions {
7 #[clap(flatten)]
8 pub input: InputBam,
9 /// Output path for bed12 file to be decorated
10 #[clap(short, long)]
11 pub bed12: String,
12 /// Output path for decorator bed file
13 #[clap(short, long, default_value = "-")]
14 pub decorator: String,
15}