r418: use the new mapQ estimator by default

This commit is contained in:
Heng Li 2013-11-02 12:25:53 -04:00
parent 19d33faa30
commit deb19593aa
2 changed files with 3 additions and 3 deletions

View File

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

2
main.c
View File

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