updated revision number

This commit is contained in:
Heng Li 2012-04-02 11:43:32 -04:00
parent 36f2fd6238
commit 790df95e1a
2 changed files with 1 additions and 2 deletions

View File

@ -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);

2
main.c
View File

@ -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()