Skip to content

Commit

Permalink
Fix typos and alignment-mode auxiliary directory
Browse files Browse the repository at this point in the history
Make sure the default auxiliary directory in alignment
mode is "aux_info" rather than "aux".

Fix typo about unmapped_names.txt and postSample.bam.

This fixes #81.
  • Loading branch information
rob-p committed Aug 29, 2016
1 parent 423b622 commit fd4a3c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/SalmonQuantify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2183,7 +2183,7 @@ int salmonQuantify(int argc, char* argv[]) {
(
"writeUnmappedNames",
po::bool_switch(&(sopt.writeUnmappedNames))->default_value(false),
"Write the names of un-mapped reads to the file unmapped.txt in the auxiliary directory.");
"Write the names of un-mapped reads to the file unmapped_names.txt in the auxiliary directory.");


po::options_description fmd("\noptions that apply to the old FMD index");
Expand Down
4 changes: 2 additions & 2 deletions src/SalmonQuantifyAlignments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,7 @@ int salmonAlignmentQuantify(int argc, char* argv[]) {

po::options_description advanced("\nadvanced options");
advanced.add_options()
("auxDir", po::value<std::string>(&(sopt.auxDir))->default_value("aux"), "The sub-directory of the quantification directory where auxiliary information "
("auxDir", po::value<std::string>(&(sopt.auxDir))->default_value("aux_info"), "The sub-directory of the quantification directory where auxiliary information "
"e.g. bootstraps, bias parameters, etc. will be written.")
("noBiasLengthThreshold", po::bool_switch(&(sopt.noBiasLengthThreshold))->default_value(false), "[experimental] : "
"If this option is enabled, then no (lower) threshold will be set on "
Expand Down Expand Up @@ -1295,7 +1295,7 @@ int salmonAlignmentQuantify(int argc, char* argv[]) {
"going to perform downstream analysis of the alignments with tools which don't, themselves, take "
"fragment assignment ambiguity into account, you should use this output.")
("sampleUnaligned,u", po::bool_switch(&(sopt.sampleUnaligned))->default_value(false), "In addition to sampling the aligned reads, also write "
"the un-aligned reads to \"posSample.bam\".")
"the un-aligned reads to \"postSample.bam\".")
("numGibbsSamples", po::value<uint32_t>(&(sopt.numGibbsSamples))->default_value(0), "Number of Gibbs sampling rounds to "
"perform.")
("numBootstraps", po::value<uint32_t>(&(sopt.numBootstraps))->default_value(0), "Number of bootstrap samples to generate. Note: "
Expand Down

0 comments on commit fd4a3c6

Please sign in to comment.