use the old mapQ by default

the new mapQ overestimate
This commit is contained in:
Heng Li 2013-09-06 14:04:41 -04:00
parent 451d60f3be
commit 1346f03ff1
2 changed files with 3 additions and 3 deletions

View File

@ -63,8 +63,8 @@ mem_opt_t *mem_opt_init()
o->chunk_size = 10000000;
o->n_threads = 1;
o->max_matesw = 100;
o->mapQ_coef_len = 100;
o->mapQ_coef_fac = log(o->mapQ_coef_len);
// o->mapQ_coef_len = 100; o->mapQ_coef_fac = log(o->mapQ_coef_len);
o->mapQ_coef_len = o->mapQ_coef_fac = 0;
bwa_fill_scmat(o->a, o->b, o->mat);
return o;
}

2
main.c
View File

@ -3,7 +3,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.5a-r406"
#define PACKAGE_VERSION "0.7.5a-r411"
#endif
int bwa_fa2pac(int argc, char *argv[]);