Skip to content

Commit

Permalink
r301: left-align indels
Browse files Browse the repository at this point in the history
Don't know why the change is working...
  • Loading branch information
lh3 committed Feb 27, 2013
1 parent 65e099d commit b621d3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions ksw.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit b621d3a

Please sign in to comment.