Skip to content

Commit

Permalink
input files
Browse files Browse the repository at this point in the history
  • Loading branch information
dagou committed Sep 29, 2024
1 parent 10f4782 commit a38fa5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ Integrates 'splitr', 'annotate', and 'resolve' into a unified workflow for seque
Usage: kun_peng classify [OPTIONS] --db <DATABASE> --chunk-dir <CHUNK_DIR> [INPUT_FILES]...

Arguments:
[INPUT_FILES]... A list of input file paths (FASTA/FASTQ) to be processed by the classify program. Supports fasta or fastq format files (e.g., .fasta, .fastq) and gzip compressed files (e.g., .fasta.gz, .fastq.gz)
[INPUT_FILES]... A list of input file paths (FASTA/FASTQ) to be processed by the classify program. Supports fasta or fastq format files (e.g., .fasta, .fastq) and gzip compressed files (e.g., .fasta.gz, .fastq.gz).
Can also be a single .txt file containing a list of input file paths, one per line.

Options:
--db <DATABASE>
Expand Down
1 change: 1 addition & 0 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ pub struct ClassifyArgs {
// pub full_output: bool,
/// A list of input file paths (FASTA/FASTQ) to be processed by the classify program.
/// Supports fasta or fastq format files (e.g., .fasta, .fastq) and gzip compressed files (e.g., .fasta.gz, .fastq.gz).
/// Can also be a single .txt file containing a list of input file paths, one per line.
// #[clap(short = 'F', long = "files")]
pub input_files: Vec<PathBuf>,
}
Expand Down

0 comments on commit a38fa5d

Please sign in to comment.