r540: removed a buggy debugging line

This commit is contained in:
Heng Li 2017-10-29 00:02:41 -04:00
parent 192217a10c
commit 285eb0da05
2 changed files with 1 additions and 2 deletions

View File

@ -119,7 +119,6 @@ void ksw_exts2_sse(void *km, int qlen, const uint8_t *query, int tlen, const uin
if ((flag & KSW_EZ_SPLICE_REV) && target[t+1] == 1 && target[t+2] == 3) can_type = 1; // CTr...
if (can_type && (target[t+3] == 0 || target[t+3] == 2)) can_type = 2;
if (can_type) ((int8_t*)donor)[t] = can_type == 2? 0 : semi_cost;
if (can_type) ((int8_t*)donor)[t] = 0;
}
memset(acceptor, -noncan, tlen_ * 16);
for (t = 2; t < tlen; ++t) {

2
main.c
View File

@ -6,7 +6,7 @@
#include "mmpriv.h"
#include "getopt.h"
#define MM_VERSION "2.3-r539-dirty"
#define MM_VERSION "2.3-r540-dirty"
#ifdef __linux__
#include <sys/resource.h>