From 533150d49d54c245e1d2841d9bf14449b126dd15 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Tue, 27 Jun 2017 20:29:39 -0400 Subject: [PATCH] r90: revert default band width to 1000 10000 is excessively tolerant with bad hits. --- main.c | 2 +- map.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index e5b4eaa..a109aba 100644 --- a/main.c +++ b/main.c @@ -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() { diff --git a/map.c b/map.c index 98f1a4d..9657915 100644 --- a/map.c +++ b/map.c @@ -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;