r292: fixed a very stupid bug on CLI
I was thinking 0x10 or 16, but wrote 0x16...
This commit is contained in:
parent
bfb2583d7f
commit
c6b226d719
2
bwamem.h
2
bwamem.h
|
|
@ -15,7 +15,7 @@ typedef struct __smem_i smem_i;
|
||||||
#define MEM_F_PE 0x2
|
#define MEM_F_PE 0x2
|
||||||
#define MEM_F_NOPAIRING 0x4
|
#define MEM_F_NOPAIRING 0x4
|
||||||
#define MEM_F_ALL 0x8
|
#define MEM_F_ALL 0x8
|
||||||
#define MEM_F_NO_MULTI 0x16
|
#define MEM_F_NO_MULTI 0x10
|
||||||
|
|
||||||
typedef struct {
|
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
|
int a, b, q, r; // match score, mismatch penalty and gap open/extension penalty. A gap of size k costs q+k*r
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue