mod dot;
mod fa;
mod gtf;
mod vcf;
pub use dot::*;
pub use fa::*;
pub use gtf::*;
pub use vcf::*;
use clap::Subcommand;
use std::path::PathBuf;
#[derive(Subcommand)]
pub enum Commands {
Parse {
#[arg(required = true)]
input: PathBuf,
},
Fa {
#[arg(required = true)]
input: PathBuf,
#[arg(short, long)]
reference_genome: PathBuf,
#[arg(short, long)]
output: Option<PathBuf>,
},
Gtf {
#[arg(required = true)]
input: PathBuf,
#[arg(short, long)]
output: Option<PathBuf>,
},
Vcf {
#[arg(required = true)]
input: PathBuf,
#[arg(short, long)]
output: Option<PathBuf>,
},
Dot {
#[arg(required = true)]
input: PathBuf,
#[arg(short, long)]
output: Option<PathBuf>,
},
Traverse {
#[arg(required = true)]
input: PathBuf,
#[arg(short, long)]
output: Option<PathBuf>,
},
}