r292: fixed a very stupid bug on CLI

I was thinking 0x10 or 16, but wrote 0x16...
This commit is contained in:
Heng Li 2013-02-26 12:49:48 -05:00
parent bfb2583d7f
commit c6b226d719
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ typedef struct __smem_i smem_i;
#define MEM_F_PE 0x2
#define MEM_F_NOPAIRING 0x4
#define MEM_F_ALL 0x8
#define MEM_F_NO_MULTI 0x16
#define MEM_F_NO_MULTI 0x10
typedef struct {
int a, b, q, r; // match score, mismatch penalty and gap open/extension penalty. A gap of size k costs q+k*r

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.6.2-r291-beta"
#define PACKAGE_VERSION "0.6.2-r292-beta"
#endif
static int usage()