r90: revert default band width to 1000

10000 is excessively tolerant with bad hits.
This commit is contained in:
Heng Li 2017-06-27 20:29:39 -04:00
parent fa80177e58
commit 533150d49d
2 changed files with 2 additions and 2 deletions

2
main.c
View File

@ -10,7 +10,7 @@
#include "minimap.h"
#include "mmpriv.h"
#define MM_VERSION "2.0-r89-pre"
#define MM_VERSION "2.0-r90-pre"
void liftrlimit()
{

2
map.c
View File

@ -16,7 +16,7 @@ void mm_mapopt_init(mm_mapopt_t *opt)
opt->min_cnt = 3;
opt->min_score = 40;
opt->bw = 10000;
opt->bw = 1000;
opt->max_gap = 10000;
opt->max_skip = 15;