xsra 0.2.29

A performant and storage-efficient CLI tool to extract sequences from an SRA archive with support for FASTA, FASTQ, and BINSEQ outputs.
Documentation
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>,
}