1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::utils::input_bam::InputBam;
use clap::Args;
use std::fmt::Debug;

#[derive(Args, Debug)]
pub struct FootprintOptions {
    #[clap(flatten)]
    pub input: InputBam,
    /// BED file with the regions to footprint. Should all contain the same motif with proper strand information, and ideally be ChIP-seq peaks.
    #[clap(short, long)]
    pub bed: String,
    /// yaml describing the modules of the footprint
    #[clap(short, long)]
    pub yaml: String,
    /// Output bam
    #[clap(short, long, default_value = "-")]
    pub out: String,
}