Skip to content

Commit

Permalink
add extra long option names for rad file generation and sketch mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Nov 24, 2020
1 parent 54a4cf1 commit e5a930e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ProgramOptionsGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -372,10 +372,10 @@ namespace salmon {
("version,v", "print version string")
("help,h", "produce help message")
("output,o", po::value<std::string>()->required(), "Output quantification directory.")
("justAlign,j", po::bool_switch()->default_value(alevin::defaults::just_align),
("rad,justAlign,j", po::bool_switch()->default_value(alevin::defaults::just_align),
"just selectively align the data and write the results to a RAD file. Do not perform "
"the rest of the quantification procedure.")
("sketchMode", po::bool_switch()->default_value(alevin::defaults::sketch_mode),
("sketch,sketchMode", po::bool_switch()->default_value(alevin::defaults::sketch_mode),
"perform sketching rather than selective alignment and write the results to a RAD file. "
"Requires the `--justAlign` flag. Do not perform the rest of the quantification procedure."
)
Expand Down

0 comments on commit e5a930e

Please sign in to comment.