Skip to content

Commit

Permalink
Merge pull request #81 from yech1990/master
Browse files Browse the repository at this point in the history
adjust the upper limit for PacBio data
  • Loading branch information
sfchen authored Aug 14, 2018
2 parents 5123ccf + 3885941 commit 3f0970e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ bool Options::validate() {
if(trim.tail2 < 0 || trim.tail2 > 100)
error_exit("trim_tail2 (--trim_tail2) should be 0 ~ 100, suggest 0 ~ 4");

if(qualfilter.qualifiedQual - 33 < 0 || qualfilter.qualifiedQual - 33 > 50)
error_exit("qualitified phred (--qualified_quality_phred) should be 0 ~ 50, suggest 10 ~ 20");
if(qualfilter.qualifiedQual - 33 < 0 || qualfilter.qualifiedQual - 33 > 93)
error_exit("qualitified phred (--qualified_quality_phred) should be 0 ~ 93, suggest 10 ~ 20");

if(qualfilter.unqualifiedPercentLimit < 0 || qualfilter.unqualifiedPercentLimit > 100)
error_exit("unqualified percent limit (--unqualified_percent_limit) should be 0 ~ 100, suggest 20 ~ 60");
Expand Down

0 comments on commit 3f0970e

Please sign in to comment.