Skip to content

Commit

Permalink
clarify fasta input usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ekg committed Nov 1, 2024
1 parent 9e86feb commit 1f9d9b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interface/parse_args.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ void parse_args(int argc,
parser.helpParams.eachgroupindent = 2;

args::Group options_group(parser, "");
args::Positional<std::string> target_sequence_file(options_group, "target.fa", "target sequences (required)");
args::Positional<std::string> query_sequence_file(options_group, "query.fa", "query sequences (optional, defaults to target)");
args::Positional<std::string> target_sequence_file(options_group, "target.fa", "target sequences (required, default: self-map)");
args::Positional<std::string> query_sequence_file(options_group, "query.fa", "query sequences (optional)");
args::Group indexing_opts(options_group, "Indexing:");
args::ValueFlag<std::string> write_index(indexing_opts, "FILE", "build and save index to FILE", {'W', "write-index"});
args::ValueFlag<std::string> mashmap_index(indexing_opts, "FILE", "use pre-built index from FILE", {'i', "index"});
Expand Down

0 comments on commit 1f9d9b2

Please sign in to comment.