r895: increase the default max_XA_hits_alt to 200
Because there are >100 HLA haplotypes
This commit is contained in:
parent
647b0e828a
commit
2a18fa114f
2
bwamem.c
2
bwamem.c
|
|
@ -73,7 +73,7 @@ mem_opt_t *mem_opt_init()
|
||||||
o->chunk_size = 10000000;
|
o->chunk_size = 10000000;
|
||||||
o->n_threads = 1;
|
o->n_threads = 1;
|
||||||
o->max_XA_hits = 5;
|
o->max_XA_hits = 5;
|
||||||
o->max_XA_hits_alt = 50;
|
o->max_XA_hits_alt = 200;
|
||||||
o->max_matesw = 50;
|
o->max_matesw = 50;
|
||||||
o->mask_level_redun = 0.95;
|
o->mask_level_redun = 0.95;
|
||||||
o->min_chain_weight = 0;
|
o->min_chain_weight = 0;
|
||||||
|
|
|
||||||
2
main.c
2
main.c
|
|
@ -4,7 +4,7 @@
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
|
||||||
#ifndef PACKAGE_VERSION
|
#ifndef PACKAGE_VERSION
|
||||||
#define PACKAGE_VERSION "0.7.10-r890-dirty"
|
#define PACKAGE_VERSION "0.7.10-r895-dirty"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int bwa_fa2pac(int argc, char *argv[]);
|
int bwa_fa2pac(int argc, char *argv[]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue