2013-02-11 23:59:38 +08:00
|
|
|
#include <stdlib.h>
|
2013-02-12 05:10:14 +08:00
|
|
|
#include <string.h>
|
2013-02-15 01:59:32 +08:00
|
|
|
#include <stdio.h>
|
2013-02-12 01:15:12 +08:00
|
|
|
#include <math.h>
|
2013-02-11 23:59:38 +08:00
|
|
|
#include "kstring.h"
|
|
|
|
|
#include "bwamem.h"
|
|
|
|
|
#include "kvec.h"
|
2013-02-12 22:50:28 +08:00
|
|
|
#include "utils.h"
|
2013-02-16 23:09:30 +08:00
|
|
|
#include "ksw.h"
|
2013-02-11 23:59:38 +08:00
|
|
|
|
|
|
|
|
#define MIN_RATIO 0.8
|
2013-02-12 01:15:12 +08:00
|
|
|
#define MIN_DIR_CNT 10
|
2013-02-12 02:44:39 +08:00
|
|
|
#define MIN_DIR_RATIO 0.05
|
2013-02-12 01:15:12 +08:00
|
|
|
#define OUTLIER_BOUND 2.0
|
|
|
|
|
#define MAPPING_BOUND 3.0
|
|
|
|
|
#define MAX_STDDEV 4.0
|
|
|
|
|
#define EXT_STDDEV 4.0
|
2013-02-11 23:59:38 +08:00
|
|
|
|
2013-02-12 05:10:14 +08:00
|
|
|
void bwa_hit2sam(kstring_t *str, const int8_t mat[25], int q, int r, int w, const bntseq_t *bns, const uint8_t *pac, bseq1_t *s, bwahit_t *p, int is_hard);
|
|
|
|
|
|
2013-02-11 23:59:38 +08:00
|
|
|
static int cal_sub(const mem_opt_t *opt, mem_alnreg_v *r)
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
for (j = 1; j < r->n; ++j) { // choose unique alignment
|
|
|
|
|
int b_max = r->a[j].qb > r->a[0].qb? r->a[j].qb : r->a[0].qb;
|
|
|
|
|
int e_min = r->a[j].qe < r->a[0].qe? r->a[j].qe : r->a[0].qe;
|
|
|
|
|
if (e_min > b_max) { // have overlap
|
|
|
|
|
int min_l = r->a[j].qe - r->a[j].qb < r->a[0].qe - r->a[0].qb? r->a[j].qe - r->a[j].qb : r->a[0].qe - r->a[0].qb;
|
|
|
|
|
if (e_min - b_max >= min_l * opt->mask_level) break; // significant overlap
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return j < r->n? r->a[j].score : opt->min_seed_len * opt->a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void mem_pestat(const mem_opt_t *opt, int64_t l_pac, int n, const mem_alnreg_v *regs, mem_pestat_t pes[4])
|
|
|
|
|
{
|
2013-02-12 02:44:39 +08:00
|
|
|
int i, d, max;
|
2013-02-12 22:50:28 +08:00
|
|
|
uint64_v isize[4];
|
2013-02-12 01:15:12 +08:00
|
|
|
memset(pes, 0, 4 * sizeof(mem_pestat_t));
|
2013-02-11 23:59:38 +08:00
|
|
|
memset(isize, 0, sizeof(kvec_t(int)) * 4);
|
2013-02-12 01:15:12 +08:00
|
|
|
for (i = 0; i < n>>1; ++i) {
|
2013-02-11 23:59:38 +08:00
|
|
|
int dir;
|
2013-02-15 01:59:32 +08:00
|
|
|
int64_t is;
|
2013-02-11 23:59:38 +08:00
|
|
|
mem_alnreg_v *r[2];
|
|
|
|
|
r[0] = (mem_alnreg_v*)®s[i<<1|0];
|
|
|
|
|
r[1] = (mem_alnreg_v*)®s[i<<1|1];
|
|
|
|
|
if (r[0]->n == 0 || r[1]->n == 0) continue;
|
|
|
|
|
if (cal_sub(opt, r[0]) > MIN_RATIO * r[0]->a[0].score) continue;
|
|
|
|
|
if (cal_sub(opt, r[1]) > MIN_RATIO * r[1]->a[0].score) continue;
|
2013-02-15 01:59:32 +08:00
|
|
|
dir = mem_infer_dir(l_pac, r[0]->a[0].rb, r[1]->a[0].rb, &is);
|
|
|
|
|
if (is && is <= opt->max_ins) kv_push(uint64_t, isize[dir], is);
|
2013-02-11 23:59:38 +08:00
|
|
|
}
|
2013-02-12 02:44:39 +08:00
|
|
|
if (mem_verbose >= 3) fprintf(stderr, "[M::%s] # candidate unique pairs for (FF, FR, RF, RR): (%ld, %ld, %ld, %ld)\n", __func__, isize[0].n, isize[1].n, isize[2].n, isize[3].n);
|
2013-02-12 01:15:12 +08:00
|
|
|
for (d = 0; d < 4; ++d) { // TODO: this block is nearly identical to the one in bwtsw2_pair.c. It would be better to merge these two.
|
|
|
|
|
mem_pestat_t *r = &pes[d];
|
2013-02-12 22:50:28 +08:00
|
|
|
uint64_v *q = &isize[d];
|
2013-02-12 02:44:39 +08:00
|
|
|
int p25, p50, p75, x;
|
2013-02-12 01:15:12 +08:00
|
|
|
if (q->n < MIN_DIR_CNT) {
|
|
|
|
|
fprintf(stderr, "[M::%s] skip orientation %c%c as there are not enough pairs\n", __func__, "FR"[d>>1&1], "FR"[d&1]);
|
|
|
|
|
r->failed = 1;
|
|
|
|
|
continue;
|
|
|
|
|
} else fprintf(stderr, "[M::%s] analyzing insert size distribution for orientation %c%c...\n", __func__, "FR"[d>>1&1], "FR"[d&1]);
|
2013-02-12 22:50:28 +08:00
|
|
|
ks_introsort_64(q->n, q->a);
|
2013-02-12 01:15:12 +08:00
|
|
|
p25 = q->a[(int)(.25 * q->n + .499)];
|
|
|
|
|
p50 = q->a[(int)(.50 * q->n + .499)];
|
|
|
|
|
p75 = q->a[(int)(.75 * q->n + .499)];
|
|
|
|
|
r->low = (int)(p25 - OUTLIER_BOUND * (p75 - p25) + .499);
|
|
|
|
|
if (r->low < 1) r->low = 1;
|
|
|
|
|
r->high = (int)(p75 + OUTLIER_BOUND * (p75 - p25) + .499);
|
|
|
|
|
fprintf(stderr, "[M::%s] (25, 50, 75) percentile: (%d, %d, %d)\n", __func__, p25, p50, p75);
|
|
|
|
|
fprintf(stderr, "[M::%s] low and high boundaries for computing mean and std.dev: (%d, %d)\n", __func__, r->low, r->high);
|
|
|
|
|
for (i = x = 0, r->avg = 0; i < q->n; ++i)
|
|
|
|
|
if (q->a[i] >= r->low && q->a[i] <= r->high)
|
|
|
|
|
r->avg += q->a[i], ++x;
|
|
|
|
|
r->avg /= x;
|
|
|
|
|
for (i = 0, r->std = 0; i < q->n; ++i)
|
|
|
|
|
if (q->a[i] >= r->low && q->a[i] <= r->high)
|
|
|
|
|
r->std += (q->a[i] - r->avg) * (q->a[i] - r->avg);
|
|
|
|
|
r->std = sqrt(r->std / x);
|
|
|
|
|
fprintf(stderr, "[M::%s] mean and std.dev: (%.2f, %.2f)\n", __func__, r->avg, r->std);
|
|
|
|
|
r->low = (int)(p25 - MAPPING_BOUND * (p75 - p25) + .499);
|
|
|
|
|
r->high = (int)(p75 + MAPPING_BOUND * (p75 - p25) + .499);
|
|
|
|
|
if (r->low > r->avg - MAX_STDDEV * r->std) r->low = (int)(r->avg - MAX_STDDEV * r->std + .499);
|
|
|
|
|
if (r->high < r->avg - MAX_STDDEV * r->std) r->high = (int)(r->avg + MAX_STDDEV * r->std + .499);
|
|
|
|
|
if (r->low < 1) r->low = 1;
|
|
|
|
|
fprintf(stderr, "[M::%s] low and high boundaries for proper pairs: (%d, %d)\n", __func__, r->low, r->high);
|
2013-02-12 02:44:39 +08:00
|
|
|
free(q->a);
|
2013-02-12 01:15:12 +08:00
|
|
|
}
|
2013-02-12 02:44:39 +08:00
|
|
|
for (d = 0, max = 0; d < 4; ++d)
|
|
|
|
|
max = max > isize[d].n? max : isize[d].n;
|
|
|
|
|
for (d = 0; d < 4; ++d)
|
|
|
|
|
if (pes[d].failed == 0 && isize[d].n < max * MIN_DIR_RATIO) {
|
|
|
|
|
pes[d].failed = 1;
|
|
|
|
|
fprintf(stderr, "[M::%s] skip orientation %c%c\n", __func__, "FR"[d>>1&1], "FR"[d&1]);
|
|
|
|
|
}
|
2013-02-11 23:59:38 +08:00
|
|
|
}
|
2013-02-12 04:29:03 +08:00
|
|
|
|
2013-02-16 23:48:50 +08:00
|
|
|
void mem_matesw(const mem_opt_t *opt, int64_t l_pac, const uint8_t *pac, const mem_pestat_t pes[4], const mem_alnreg_t *a, int l_ms, const uint8_t *ms, mem_alnreg_v *ma)
|
2013-02-14 12:16:16 +08:00
|
|
|
{
|
2013-02-15 01:59:32 +08:00
|
|
|
int i, r, skip[4];
|
|
|
|
|
for (r = 0; r < 4; ++r)
|
|
|
|
|
skip[r] = pes[r].failed? 1 : 0;
|
2013-02-16 23:48:50 +08:00
|
|
|
#if 0
|
2013-02-15 01:59:32 +08:00
|
|
|
for (i = 0; i < ma->n; ++i) { // check which orinentation has been found
|
|
|
|
|
int64_t dist;
|
|
|
|
|
r = mem_infer_dir(l_pac, a->rb, ma->a[i].rb, &dist);
|
|
|
|
|
if (dist >= pes[r].low && dist <= pes[r].high)
|
|
|
|
|
skip[r] = 1;
|
|
|
|
|
}
|
2013-02-16 23:48:50 +08:00
|
|
|
#endif
|
2013-02-15 01:59:32 +08:00
|
|
|
if (skip[0] + skip[1] + skip[2] + skip[3] == 4) return; // consistent pair exist; no need to perform SW
|
2013-02-14 12:55:56 +08:00
|
|
|
for (r = 0; r < 4; ++r) {
|
|
|
|
|
int is_rev, is_larger;
|
2013-02-16 22:48:44 +08:00
|
|
|
uint8_t *seq, *rev = 0, *ref;
|
|
|
|
|
int64_t rb, re, len;
|
|
|
|
|
if (skip[r]) continue;
|
|
|
|
|
is_rev = (r>>1 != (r&1)); // whether to reverse complement the mate
|
2013-02-16 23:48:50 +08:00
|
|
|
is_larger = !(r>>1); // whether the mate has larger coordinate
|
2013-02-16 22:48:44 +08:00
|
|
|
if (is_rev) {
|
|
|
|
|
rev = malloc(l_ms); // this is the reverse complement of $ms
|
2013-02-16 23:48:50 +08:00
|
|
|
for (i = 0; i < l_ms; ++i) rev[l_ms - 1 - i] = ms[i] < 4? 3 - ms[i] : 4;
|
2013-02-16 22:48:44 +08:00
|
|
|
seq = rev;
|
|
|
|
|
} else seq = (uint8_t*)ms;
|
|
|
|
|
if (!is_rev) {
|
|
|
|
|
rb = is_larger? a->rb + pes[r].low : a->rb - pes[r].high;
|
|
|
|
|
re = (is_larger? a->rb + pes[r].high: a->rb - pes[r].low) + l_ms; // if on the same strand, end position should be larger to make room for the seq length
|
|
|
|
|
} else {
|
|
|
|
|
rb = (is_larger? a->rb + pes[r].low : a->rb - pes[r].high) - l_ms; // similarly on opposite strands
|
|
|
|
|
re = is_larger? a->rb + pes[r].high: a->rb - pes[r].low;
|
|
|
|
|
}
|
2013-02-16 23:09:30 +08:00
|
|
|
if (rb < 0) rb = 0;
|
2013-02-16 23:48:50 +08:00
|
|
|
if (re > l_pac<<1) re = l_pac<<1;
|
2013-02-16 22:48:44 +08:00
|
|
|
ref = bns_get_seq(l_pac, pac, rb, re, &len);
|
2013-02-16 23:09:30 +08:00
|
|
|
if (len == re - rb) { // no funny things happening
|
|
|
|
|
kswr_t aln;
|
|
|
|
|
mem_alnreg_t b;
|
|
|
|
|
int tmp, xtra = KSW_XSUBO | KSW_XSTART | (l_ms * opt->a < 250? KSW_XBYTE : 0) | opt->min_seed_len;
|
|
|
|
|
aln = ksw_align(l_ms, seq, len, ref, 5, opt->mat, opt->q, opt->r, xtra, 0);
|
|
|
|
|
memset(&b, 0, sizeof(mem_alnreg_t));
|
|
|
|
|
b.qb = aln.qb; b.qe = aln.qe + 1;
|
2013-02-16 23:48:50 +08:00
|
|
|
if (is_rev) {
|
|
|
|
|
b.rb = (l_pac<<1) - (rb + aln.te + 1);
|
|
|
|
|
b.re = (l_pac<<1) - (rb + aln.tb);
|
|
|
|
|
} else {
|
|
|
|
|
b.rb = rb + aln.tb;
|
|
|
|
|
b.re = rb + aln.te + 1;
|
|
|
|
|
}
|
2013-02-16 23:09:30 +08:00
|
|
|
b.score = aln.score;
|
|
|
|
|
b.csub = aln.score2;
|
|
|
|
|
b.secondary = -1;
|
2013-02-16 23:48:50 +08:00
|
|
|
printf("*** %d, [%lld,%lld], %d:%d, (%lld,%lld), (%lld,%lld) == (%lld,%lld)\n", aln.score, rb, re, is_rev, is_larger, a->rb, a->re, ma->a[0].rb, ma->a[0].re, b.rb, b.re);
|
2013-02-16 23:09:30 +08:00
|
|
|
kv_push(mem_alnreg_t, *ma, b); // make room for a new element
|
|
|
|
|
// move b s.t. ma is sorted
|
|
|
|
|
for (i = 0; i < ma->n - 1; ++i) // find the insertion point
|
|
|
|
|
if (ma->a[i].score < b.score) break;
|
|
|
|
|
tmp = i;
|
|
|
|
|
for (i = ma->n - 1; i > tmp; --i) ma->a[i] = ma->a[i-1];
|
|
|
|
|
ma->a[i] = b;
|
2013-02-16 22:48:44 +08:00
|
|
|
}
|
|
|
|
|
if (rev == 0) free(rev);
|
|
|
|
|
free(ref);
|
2013-02-14 12:55:56 +08:00
|
|
|
}
|
2013-02-14 12:16:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int mem_pair(const mem_opt_t *opt, int64_t l_pac, const uint8_t *pac, const mem_pestat_t pes[4], bseq1_t s[2], mem_alnreg_v a[2], bwahit_t h[2])
|
2013-02-12 04:29:03 +08:00
|
|
|
{
|
2013-02-13 05:15:26 +08:00
|
|
|
extern void mem_alnreg2hit(const mem_alnreg_t *a, bwahit_t *h);
|
2013-02-13 01:09:36 +08:00
|
|
|
pair64_v v;
|
|
|
|
|
pair64_t o, subo; // score<<32 | raw_score<<8 | hash
|
2013-02-13 05:15:26 +08:00
|
|
|
int r, i, k, y[4]; // y[] keeps the last hit
|
2013-02-12 04:29:03 +08:00
|
|
|
kv_init(v);
|
2013-02-13 01:09:36 +08:00
|
|
|
for (r = 0; r < 2; ++r) { // loop through read number
|
2013-02-12 04:29:03 +08:00
|
|
|
for (i = 0; i < a[r].n; ++i) {
|
2013-02-13 01:09:36 +08:00
|
|
|
pair64_t key;
|
2013-02-12 04:29:03 +08:00
|
|
|
mem_alnreg_t *e = &a[r].a[i];
|
2013-02-14 12:16:16 +08:00
|
|
|
key.x = e->rb < l_pac? e->rb : (l_pac<<1) - 1 - e->rb; // forward position
|
|
|
|
|
key.y = (uint64_t)e->score << 32 | i << 2 | (e->rb >= l_pac)<<1 | r;
|
2013-02-13 01:09:36 +08:00
|
|
|
kv_push(pair64_t, v, key);
|
2013-02-12 04:29:03 +08:00
|
|
|
}
|
|
|
|
|
}
|
2013-02-13 01:09:36 +08:00
|
|
|
ks_introsort_128(v.n, v.a);
|
2013-02-12 22:22:47 +08:00
|
|
|
y[0] = y[1] = y[2] = y[3] = -1;
|
2013-02-13 01:09:36 +08:00
|
|
|
o.x = o.y = subo.x = subo.y = 0;
|
2013-02-12 22:22:47 +08:00
|
|
|
for (i = 0; i < v.n; ++i) {
|
2013-02-13 01:09:36 +08:00
|
|
|
for (r = 0; r < 2; ++r) { // loop through direction
|
2013-02-13 05:15:26 +08:00
|
|
|
int dir = r<<1 | (v.a[i].y>>1&1), which;
|
2013-02-12 22:22:47 +08:00
|
|
|
if (pes[dir].failed) continue; // invalid orientation
|
2013-02-13 01:09:36 +08:00
|
|
|
which = r<<1 | ((v.a[i].y&1)^1);
|
2013-02-12 22:22:47 +08:00
|
|
|
if (y[which] < 0) continue; // no previous hits
|
|
|
|
|
for (k = y[which]; k >= 0; --k) { // TODO: this is a O(n^2) solution in the worst case; remember to check if this loop takes a lot of time (I doubt)
|
2013-02-13 01:09:36 +08:00
|
|
|
int64_t dist;
|
|
|
|
|
int raw_score, score;
|
2013-02-12 22:22:47 +08:00
|
|
|
double ns;
|
2013-02-13 01:09:36 +08:00
|
|
|
uint64_t x, pair;
|
|
|
|
|
if ((v.a[k].y&3) != which) continue;
|
|
|
|
|
dist = (int64_t)v.a[i].x - v.a[k].x;
|
2013-02-12 22:22:47 +08:00
|
|
|
if (dist > pes[dir].high) break;
|
|
|
|
|
if (dist < pes[dir].low) continue;
|
2013-02-13 01:09:36 +08:00
|
|
|
raw_score = (v.a[i].y>>32) + (v.a[i].y>>32);
|
|
|
|
|
if (raw_score + 20 * opt->a < (subo.x>>8&0xffffff)) continue; // skip the following if the score is too small
|
2013-02-12 22:22:47 +08:00
|
|
|
ns = (dist - pes[dir].avg) / pes[dir].std;
|
2013-02-13 05:15:26 +08:00
|
|
|
score = (int)(raw_score - 4.343 / 23. * (opt->a + opt->b) * log(erfc(fabs(ns) * M_SQRT1_2)) + .499);
|
2013-02-13 01:09:36 +08:00
|
|
|
pair = (uint64_t)k<<32 | i;
|
|
|
|
|
x = (uint64_t)score<<32 | (int64_t)raw_score<<8 | (hash_64(pair)&0xff);
|
|
|
|
|
if (x > o.x) subo = o, o.x = x, o.y = pair;
|
|
|
|
|
else if (x > subo.x) subo.x = x, subo.y = pair;
|
2013-02-12 22:22:47 +08:00
|
|
|
}
|
|
|
|
|
}
|
2013-02-13 01:09:36 +08:00
|
|
|
y[v.a[i].y&3] = i;
|
2013-02-12 22:22:47 +08:00
|
|
|
}
|
2013-02-13 05:15:26 +08:00
|
|
|
if (o.x > 0) {
|
|
|
|
|
i = o.y >> 32; k = o.y << 32 >> 32;
|
|
|
|
|
mem_alnreg2hit(&a[v.a[i].y&1].a[v.a[i].y<<32>>34], &h[v.a[i].y&1]);
|
|
|
|
|
mem_alnreg2hit(&a[v.a[k].y&1].a[v.a[k].y<<32>>34], &h[v.a[k].y&1]);
|
|
|
|
|
}
|
2013-02-12 04:29:03 +08:00
|
|
|
free(v.a);
|
2013-02-13 05:15:26 +08:00
|
|
|
return o.x == 0? -1 : 0;
|
2013-02-12 04:29:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void mem_sam_pe(const mem_opt_t *opt, const bntseq_t *bns, const uint8_t *pac, const mem_pestat_t pes[4], bseq1_t s[2], mem_alnreg_v a[2])
|
|
|
|
|
{
|
2013-02-12 05:10:14 +08:00
|
|
|
kstring_t str;
|
2013-02-12 04:29:03 +08:00
|
|
|
bwahit_t h[2];
|
2013-02-16 22:48:44 +08:00
|
|
|
mem_alnreg_t a0[2];
|
2013-02-12 05:10:14 +08:00
|
|
|
str.l = str.m = 0; str.s = 0;
|
2013-02-16 22:48:44 +08:00
|
|
|
// perform SW for the best alignment
|
|
|
|
|
a0[0].score = a0[1].score = -1;
|
|
|
|
|
if (a[0].n) a0[0] = a[0].a[0];
|
|
|
|
|
if (a[1].n) a0[1] = a[1].a[0];
|
2013-02-16 23:48:50 +08:00
|
|
|
if (a0[0].score > 0) mem_matesw(opt, bns->l_pac, pac, pes, &a0[0], s[1].l_seq, (uint8_t*)s[1].seq, &a[1]);
|
|
|
|
|
if (a0[1].score > 0) mem_matesw(opt, bns->l_pac, pac, pes, &a0[1], s[0].l_seq, (uint8_t*)s[0].seq, &a[0]);
|
2013-02-16 22:48:44 +08:00
|
|
|
// pairing single-end hits
|
|
|
|
|
if (mem_pair(opt, bns->l_pac, pac, pes, s, a, h) == 0) { // successful pairing
|
2013-02-13 05:15:26 +08:00
|
|
|
bwa_hit2sam(&str, opt->mat, opt->q, opt->r, opt->w, bns, pac, &s[0], &h[0], opt->is_hard);
|
|
|
|
|
s[0].sam = strdup(str.s); str.l = 0;
|
|
|
|
|
bwa_hit2sam(&str, opt->mat, opt->q, opt->r, opt->w, bns, pac, &s[1], &h[1], opt->is_hard);
|
|
|
|
|
s[1].sam = str.s;
|
|
|
|
|
} else {
|
|
|
|
|
}
|
2013-02-12 04:29:03 +08:00
|
|
|
}
|