Skip to content

Commit

Permalink
Modified the default min_qual parameter from 13 to 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbonfield committed Mar 18, 2021
1 parent 9b6f62d commit 98bbd48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpileup.c
Expand Up @@ -1197,7 +1197,7 @@ int main_mpileup(int argc, char *argv[])
int nfiles = 0, use_orphan = 0, noref = 0;
mplp_conf_t mplp;
memset(&mplp, 0, sizeof(mplp_conf_t));
mplp.min_baseQ = 13;
mplp.min_baseQ = 1;
mplp.capQ_thres = 0;
mplp.max_depth = 250; mplp.max_indel_depth = 250;
mplp.openQ = 40; mplp.extQ = 20; mplp.tandemQ = 500;
Expand Down

0 comments on commit 98bbd48

Please sign in to comment.