1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use clap::Parser; use super::MultiInputOptions; #[derive(Debug, Parser)] pub struct PrefetchArgs { #[clap(flatten)] pub input: MultiInputOptions, /// Path to write the .sra file to /// /// default: './<accession>.sra' #[clap(short, long, help_heading = "OUTPUT OPTIONS")] pub output: Option<String>, }