r301: left-align indels

Don't know why the change is working...
This commit is contained in:
Heng Li 2013-02-27 00:42:19 -05:00
parent 65e099df34
commit b621d3ae38
2 changed files with 5 additions and 5 deletions

8
ksw.c
View File

@ -492,10 +492,10 @@ int ksw_global(int qlen, const uint8_t *query, int tlen, const uint8_t *target,
uint8_t d; // direction
p->h = h1;
h += q[j];
d = h > e? 0 : 1;
h = h > e? h : e;
d = h > f? d : 2;
h = h > f? h : f;
d = h >= e? 0 : 1;
h = h >= e? h : e;
d = h >= f? d : 2;
h = h >= f? h : f;
h1 = h;
h -= gapoe;
e -= gape;

2
main.c
View File

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