diff --git a/bwtsw2_aux.c b/bwtsw2_aux.c index 0f3a0f6..d33c206 100644 --- a/bwtsw2_aux.c +++ b/bwtsw2_aux.c @@ -567,7 +567,6 @@ static void update_opt(bsw2opt_t *dst, const bsw2opt_t *src, int qlen) double ll = log(qlen); int i, k; *dst = *src; - dst->t = src->t; if (dst->t < ll * dst->coef) dst->t = (int)(ll * dst->coef + .499); // set band width: the query length sets a boundary on the maximum band width k = (qlen * dst->a - 2 * dst->q) / (2 * dst->r + dst->a); diff --git a/main.c b/main.c index e4eaf66..bd9c926 100644 --- a/main.c +++ b/main.c @@ -4,7 +4,7 @@ #include "utils.h" #ifndef PACKAGE_VERSION -#define PACKAGE_VERSION "0.6.1-r106-master" +#define PACKAGE_VERSION "0.6.1-r112-master" #endif static int usage()