r473: don't count introns into blen
This commit is contained in:
parent
1a90bc8603
commit
3ff6eda3a4
2
align.c
2
align.c
|
|
@ -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];
|
uint8_t b[4];
|
||||||
b[0] = tseq[toff], b[1] = tseq[toff+1];
|
b[0] = tseq[toff], b[1] = tseq[toff+1];
|
||||||
b[2] = tseq[toff+len-2], b[3] = tseq[toff+len-1];
|
b[2] = tseq[toff+len-2], b[3] = tseq[toff+len-1];
|
||||||
toff += len, p->blen += len;
|
toff += len;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
p->dp_max = max;
|
p->dp_max = max;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue