-
Notifications
You must be signed in to change notification settings - Fork 77
/
sam.cpp
312 lines (306 loc) · 7.39 KB
/
sam.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/*
* sam.cpp
*
* Created on: Sep 23, 2009
* Author: Ben Langmead
*/
#include "hit.h"
#include "pat.h"
#include "sam.h"
#include "search_globals.h"
#include <iostream>
#include <string>
using namespace std;
/**
* Write the SAM header lines.
*/
void SAMHitSink::appendHeaders(
OutFileBuf& os,
size_t numRefs,
const EList<string>& refnames,
bool nosq,
const TIndexOffU* plen,
bool fullRef,
bool noQnameTrunc,
const char *cmdline,
const char *rgline)
{
BTString o;
o << "@HD\tVN:1.0\tSO:unsorted\n";
if(!nosq) {
for(size_t i = 0; i < numRefs; i++) {
// RNAME
o << "@SQ\tSN:";
if(i < refnames.size()) {
printUptoWs(o, refnames[i], !fullRef);
} else {
o << i;
}
o << "\tLN:" << (plen[i]) << '\n';
}
}
if(rgline != NULL) {
o << "@RG\t" << rgline << '\n';
}
o << "@PG\tID:Bowtie\tVN:" << BOWTIE_VERSION << "\tCL:\"" << cmdline << "\"\n";
os.writeString(o);
}
/**
* Report either an unaligned read or a read that exceeded the -m
* ceiling. We output placeholders for most of the fields in this
* case.
*/
void SAMHitSink::reportUnOrMax(
PatternSourcePerThread& p,
EList<Hit>* hs,
size_t threadId,
bool un)
{
if(un) {
HitSink::reportUnaligned(threadId, p);
if (noUnal) {
if (reorder_) {
ptCounts_[threadId]++;
maybeFlush(threadId);
}
return;
}
} else {
HitSink::reportMaxed(*hs, threadId, p);
}
bool paired = !p.bufb().empty();
assert(paired || p.bufa().mate == 0);
assert(!paired || p.bufa().mate > 0);
assert(un || hs->size() > 0);
assert(!un || hs == NULL || hs->size() == 0);
size_t hssz = 0;
if(hs != NULL) hssz = hs->size();
BTString& o = ptBufs_[threadId];
for(int i = 0; i < (int)p.bufa().name.length() - (paired ? 2 : 0); i++) {
if(!noQnameTrunc_ && isspace((int)p.bufa().name[i])) break;
o << p.bufa().name[i];
}
o << '\t'
<< (SAM_FLAG_UNMAPPED | (paired ? (SAM_FLAG_PAIRED | SAM_FLAG_FIRST_IN_PAIR | SAM_FLAG_MATE_UNMAPPED) : 0)) << "\t*"
<< "\t0\t0\t*\t*\t0\t0\t";
for(size_t i = 0; i < p.bufa().patFw.length(); i++) {
o << (char)p.bufa().patFw.toChar(i);
}
o << '\t';
for(size_t i = 0; i < p.bufa().qual.length(); i++) {
o << (char)p.bufa().qual[i];
}
o << "\tXM:i:" << (paired ? (hssz+1)/2 : hssz);
o << '\n';
if(paired) {
// truncate final 2 chars
for(int i = 0; i < (int)p.bufb().name.length()-2; i++) {
if(!noQnameTrunc_ && isspace((int)p.bufb().name[i])) break;
o << p.bufb().name[i];
}
o << '\t'
<< (SAM_FLAG_UNMAPPED | (paired ? (SAM_FLAG_PAIRED | SAM_FLAG_SECOND_IN_PAIR | SAM_FLAG_MATE_UNMAPPED) : 0)) << "\t*"
<< "\t0\t0\t*\t*\t0\t0\t";
for(size_t i = 0; i < p.bufb().patFw.length(); i++) {
o << (char)p.bufb().patFw.toChar(i);
}
o << '\t';
for(size_t i = 0; i < p.bufb().qual.length(); i++) {
o << (char)p.bufb().qual[i];
}
o << "\tXM:i:" << (hssz+1)/2;
o << '\n';
}
ptCounts_[threadId]++;
if (reorder_ && reorderInfo_[threadId].flushed) {
reorderInfo_[threadId].batchId = p.batch_id();
reorderInfo_[threadId].flushed = false;
}
maybeFlush(threadId);
}
/**
* Append a SAM alignment to the given output stream.
*/
void SAMHitSink::append(BTString& o, const Hit& h, int mapq, int xms) {
// QNAME
if(h.mate > 0) {
// truncate final 2 chars
for(int i = 0; i < (int)h.patName.length()-2; i++) {
if(!noQnameTrunc_ && isspace((int)h.patName[i])) break;
o << h.patName[i];
}
} else {
for(int i = 0; i < (int)h.patName.length(); i++) {
if(!noQnameTrunc_ && isspace((int)h.patName[i])) break;
o << h.patName[i];
}
}
o << '\t';
// FLAG
int flags = 0;
if(h.mate == 1) {
flags |= SAM_FLAG_PAIRED | SAM_FLAG_FIRST_IN_PAIR | SAM_FLAG_MAPPED_PAIRED;
} else if(h.mate == 2) {
flags |= SAM_FLAG_PAIRED | SAM_FLAG_SECOND_IN_PAIR | SAM_FLAG_MAPPED_PAIRED;
}
if(!h.fw) flags |= SAM_FLAG_QUERY_STRAND;
if(h.mate > 0 && !h.mfw) flags |= SAM_FLAG_MATE_STRAND;
o << flags << "\t";
// RNAME
if(_refnames != NULL && h.h.first < _refnames->size()) {
printUptoWs(o, (*_refnames)[h.h.first], !fullRef_);
} else {
o << h.h.first;
}
// POS
o << '\t' << (h.h.second + 1);
// MAPQ
o << '\t' << mapq;
// CIGAR
o << '\t' << h.length() << 'M';
// MRNM
if(h.mate > 0) {
o << "\t=";
} else {
o << "\t*";
}
// MPOS
if(h.mate > 0) {
o << '\t' << (h.mh.second + 1);
} else {
o << "\t0";
}
// ISIZE
o << '\t';
if(h.mate > 0) {
assert_eq(h.h.first, h.mh.first);
int64_t inslen = 0;
if(h.h.second > h.mh.second) {
inslen = (int64_t)h.h.second - (int64_t)h.mh.second + (int64_t)h.length();
inslen = -inslen;
} else {
inslen = (int64_t)h.mh.second - (int64_t)h.h.second + (int64_t)h.mlen;
}
o << inslen;
} else {
o << '0';
}
// SEQ
o << '\t';
for(size_t i = 0; i < h.patSeq.length(); i++) {
o << (char)h.patSeq.toChar(i);
}
// QUAL
o << '\t';
for(size_t i = 0; i < h.quals.length(); i++) {
o << (char)h.quals[i];
}
//
// Optional fields
//
// Always output stratum
o << "\tXA:i:" << (int)h.stratum;
// Always output cost
//ss << "\tXC:i:" << (int)h.cost;
// Look for SNP annotations falling within the alignment
// Output MD field
size_t len = h.patSeq.length();
int nm = 0;
int run = 0;
o << "\tMD:Z:";
const FixedBitset<1024> *mms = &h.mms;
ASSERT_ONLY(const BTDnaString* pat = &h.patSeq);
const EList<char>* refcs = &h.refcs;
if(h.fw) {
for (int i = 0; i < (int)len; ++ i) {
if(mms->test(i)) {
nm++;
// There's a mismatch at this position
assert_gt((int)refcs->size(), i);
char refChar = toupper((*refcs)[i]);
ASSERT_ONLY(char qryChar = (h.fw ? (*pat)[i] : (*pat)[len-i-1]));
assert_neq(refChar, qryChar);
o << run << refChar;
run = 0;
} else {
run++;
}
}
} else {
for (int i = (int)len-1; i >= 0; -- i) {
if(mms->test(i)) {
nm++;
// There's a mismatch at this position
assert_gt((int)refcs->size(), i);
char refChar = toupper((*refcs)[i]);
ASSERT_ONLY(char qryChar = (h.fw ? (*pat)[i] : (*pat)[len-i-1]));
assert_neq(refChar, qryChar);
o << run << refChar;
run = 0;
} else {
run++;
}
}
}
o << run;
// Add optional edit distance field
o << "\tNM:i:" << nm;
if(xms > 0) {
o << "\tXM:i:" << xms;
}
o << '\n';
}
/**
* Report maxed-out read; if sampleMax_ is set, then report 1 alignment
* at random.
*/
void SAMHitSink::reportMaxed(
EList<Hit>& hs,
size_t threadId,
PatternSourcePerThread& p)
{
HitSink::reportMaxed(hs, threadId, p);
if(sampleMax_) {
RandomSource rand;
rand.init(p.bufa().seed);
assert_gt(hs.size(), 0);
bool paired = hs.front().mate > 0;
size_t num = 1;
if(paired) {
num = 0;
int bestStratum = 999;
for(size_t i = 0; i < hs.size()-1; i += 2) {
int strat = min(hs[i].stratum, hs[i+1].stratum);
if(strat < bestStratum) {
bestStratum = strat;
num = 1;
} else if(strat == bestStratum) {
num++;
}
}
assert_leq(num, hs.size());
uint32_t r = rand.nextU32() % num;
num = 0;
for(size_t i = 0; i < hs.size()-1; i += 2) {
int strat = min(hs[i].stratum, hs[i+1].stratum);
if(strat == bestStratum) {
if(num == r) {
reportHits(NULL, &hs, i, i+2, threadId, 0, (int)(hs.size()/2)+1, true, p);
break;
}
num++;
}
}
assert_eq(num, r);
} else {
for(size_t i = 1; i < hs.size(); i++) {
assert_geq(hs[i].stratum, hs[i-1].stratum);
if(hs[i].stratum == hs[i-1].stratum) num++;
else break;
}
assert_leq(num, hs.size());
uint32_t r = rand.nextU32() % num;
reportHits(&hs[r], NULL, 0, 1, threadId, 0, (int)hs.size()+1, true, p);
}
}
}