File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020DEFAULT_KMER_SEARCH_RANGE = "20:200"
2121
2222FASTA_FILE_METAVAR = "fasta_file"
23+ INDEX_FILE_METAVAR = "index_file"
2324
2425INDEX_SUBCOMMAND = "index"
2526UNIQUE_LENGTHS_SUBCOMMAND = "search"
@@ -95,12 +96,14 @@ def parse_subcommands():
9596 unique_length_parser .add_argument (
9697 "fasta_file" ,
9798 metavar = FASTA_FILE_METAVAR ,
98- help = "File of (gzipped) fasta file for kmer generation" )
99+ help = "File of (gzipped) fasta file for kmer generation. Optionally "
100+ "comma separate multiple fasta files to simultaneously process." )
99101
100102 unique_length_parser .add_argument (
101103 "index_file" ,
102104 nargs = "?" ,
103- help = "File of reference index file to count occurances in. "
105+ help = "File of reference index file to count occurances in. Optionally "
106+ "comma separate multiple index files to simulatenously count in. "
104107 f"(default: basename of { FASTA_FILE_METAVAR } with "
105108 f"the { INDEX_EXTENSION } extension)" )
106109
You can’t perform that action at this time.
0 commit comments