r473: don't count introns into blen

This commit is contained in:
Heng Li 2017-10-05 14:37:21 -04:00
parent 1a90bc8603
commit 3ff6eda3a4
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ static void mm_update_extra(mm_extra_t *p, const uint8_t *qseq, const uint8_t *t
uint8_t b[4];
b[0] = tseq[toff], b[1] = tseq[toff+1];
b[2] = tseq[toff+len-2], b[3] = tseq[toff+len-1];
toff += len, p->blen += len;
toff += len;
}
}
p->dp_max = max;

2
main.c
View File

@ -6,7 +6,7 @@
#include "mmpriv.h"
#include "getopt.h"
#define MM_VERSION "2.2-r472-dirty"
#define MM_VERSION "2.2-r473-dirty"
#ifdef __linux__
#include <sys/resource.h>