Skip to content

Commit

Permalink
refactor: Rename --input-mapping to --align-paf and update description
Browse files Browse the repository at this point in the history
  • Loading branch information
ekg committed Nov 9, 2024
1 parent 8404f96 commit 2e65603
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 @@ -101,7 +101,7 @@ void parse_args(int argc,
args::ValueFlag<uint64_t> max_kmer_freq(mapping_opts, "INT", "maximum allowed k-mer frequency [unlimited]", {'F', "max-kmer-freq"});

args::Group alignment_opts(options_group, "Alignment:");
args::ValueFlag<std::string> input_mapping(alignment_opts, "FILE", "input PAF/SAM file for alignment", {'i', "input-mapping"});
args::ValueFlag<std::string> input_mapping(alignment_opts, "FILE", "input PAF file for alignment", {'i', "align-paf"});
args::ValueFlag<std::string> wfa_params(alignment_opts, "vals",
"scoring: mismatch, gap1(o,e), gap2(o,e) [6,6,2,26,1]", {'g', "wfa-params"});

Expand Down Expand Up @@ -607,7 +607,7 @@ void parse_args(int argc,
}

if (input_mapping) {
// directly use the input mapping file
// directly use the input PAF file
yeet_parameters.remapping = true;
map_parameters.outFileName = args::get(input_mapping);
align_parameters.mashmapPafFile = args::get(input_mapping);
Expand Down

0 comments on commit 2e65603

Please sign in to comment.