Skip to content

Commit

Permalink
Fix misspelled CLI options in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikkelSchubert committed Jul 26, 2018
1 parent 00176dc commit b195bfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fastq_enc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void invalid_phred(const char offset, const char max_score, const char raw)

<< "If the quality scores are Phred+33 encoded, but includes "
<< "scores in a greater range than expected, then use the "
<< "'--maxquality' option. Note that this option effects both "
<< "'--qualitymax' option. Note that this option effects both "
<< "reading and writing of FASTQ files.\n\n"

<< "See README for more information.";
Expand All @@ -172,7 +172,7 @@ void invalid_phred(const char offset, const char max_score, const char raw)

<< "If the quality scores are Phred+64 encoded, but includes "
<< "scores in a greater range than expected, then use the "
<< "'--maxquality' command-line option. Note that this option "
<< "'--qualitymax' command-line option. Note that this option "
<< "effects both reading and writing of FASTQ files.\n\n"

<< "See README for more information.";
Expand Down Expand Up @@ -212,7 +212,7 @@ void invalid_solexa(const char offset, const char max_score, const char raw)

<< "If the quality scores are Solexa encoded, but includes "
<< "scores in a greater range than expected, then use the "
<< "'--maxquality' command-line option. Note that this option "
<< "'--qualitymax' command-line option. Note that this option "
<< "effects both reading and writing of FASTQ files.\n\n"

<< "See README for more information.";
Expand Down

0 comments on commit b195bfd

Please sign in to comment.