r748: reduced the default -m to 50

This commit is contained in:
Heng Li 2014-05-02 16:49:19 -04:00
parent e8f28cb529
commit f21d6498bc
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ mem_opt_t *mem_opt_init()
o->chunk_size = 10000000;
o->n_threads = 1;
o->max_hits = 10;
o->max_matesw = 100;
o->max_matesw = 50;
o->mask_level_redun = 0.95;
o->min_chain_weight = 0;
o->max_chain_extend = 1<<30;

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.8-r747-dirty"
#define PACKAGE_VERSION "0.7.8-r748-dirty"
#endif
int bwa_fa2pac(int argc, char *argv[]);