-
Notifications
You must be signed in to change notification settings - Fork 77
/
ebwt_search_util.h
373 lines (352 loc) · 11.9 KB
/
ebwt_search_util.h
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
#ifndef EBWT_SEARCH_UTIL_H_
#define EBWT_SEARCH_UTIL_H_
#include <iostream>
#include <map>
#include <stdint.h>
#include "ds.h"
#include "hit.h"
#include "qual.h"
#include "sstring.h"
/// Encapsulates a change made to a query base, i.e. "the 3rd base from
/// the 5' end was changed from an A to a T". Useful when using
/// for matching seeded by "seedlings".
struct QueryMutation {
QueryMutation() : pos(0), oldBase(0), newBase(0) { }
QueryMutation(uint16_t _pos, uint8_t _oldBase, uint8_t _newBase) :
pos(_pos), oldBase(_oldBase), newBase(_newBase)
{
assert_neq(oldBase, newBase);
assert_leq(oldBase, 4);
assert_lt(newBase, 4);
}
uint16_t pos;
uint8_t oldBase; // original base from the read
uint8_t newBase; // mutated to fit the reference in at least one place
};
/**
* Encapsulates a partial alignment. Supports up to 256 positions and
* up to 3 substitutions. The 'type' field of all the alternative
* structs tells us whether this entry is a singleton entry, an offset
* into the spillover list, a non-tail entry in the spillover list, or
* a tail entry in the spillover list.
*/
typedef union PartialAlignment {
struct {
uint64_t pos0 : 16; // mismatched pos 1
uint64_t pos1 : 16; // mismatched pos 2
uint64_t pos2 : 16; // mismatched pos 3
uint64_t char0 : 2; // substituted char for pos 1
uint64_t char1 : 2; // substituted char for pos 2
uint64_t char2 : 2; // substituted char for pos 3
uint64_t reserved : 8;
uint64_t type : 2; // type of entry; 0=singleton_entry,
// 1=list_offset, 2=list_entry,
// 3=list_tail
} entry;
struct {
uint64_t off : 62;// offset into list
uint64_t type : 2; // type of entry; 0=singleton,
// 1=list_offset, 2=list_entry,
// 3=list_tail
} off; // offset into list
struct {
uint64_t unk : 62;// padding
uint64_t type : 2; // type of entry; 0=singleton,
// 1=list_offset, 2=list_entry,
// 3=list_tail
} unk; // unknown
struct {
uint64_t u64 : 64;
} u64;
/**
*
*/
bool repOk(uint32_t qualMax, uint32_t slen, const BTString& quals, bool maqPenalty) {
uint32_t qual = 0;
assert_leq(slen, quals.length());
if(entry.pos0 != 0xffff) {
assert_lt(entry.pos0, slen);
qual += mmPenalty(maqPenalty, phredCharToPhredQual(quals[entry.pos0]));
}
if(entry.pos1 != 0xffff) {
assert_lt(entry.pos1, slen);
qual += mmPenalty(maqPenalty, phredCharToPhredQual(quals[entry.pos1]));
}
if(entry.pos2 != 0xffff) {
assert_lt(entry.pos2, slen);
qual += mmPenalty(maqPenalty, phredCharToPhredQual(quals[entry.pos2]));
}
assert_leq(qual, qualMax);
return true;
}
} PartialAlignment;
#ifndef NDEBUG
static bool sameHalfPartialAlignment(PartialAlignment pa1, PartialAlignment pa2) {
if(pa1.unk.type == 1 || pa2.unk.type == 1) return false;
assert_neq(0xffff, pa1.entry.pos0);
assert_neq(0xffff, pa2.entry.pos0);
// Make sure pa1's pos0 is represented in pa1
if(pa1.entry.pos0 == pa2.entry.pos0) {
if(pa1.entry.char0 != pa2.entry.char0) return false;
} else if(pa1.entry.pos0 == pa2.entry.pos1) {
if(pa1.entry.char0 != pa2.entry.char1) return false;
} else if(pa1.entry.pos0 == pa2.entry.pos2) {
if(pa1.entry.char0 != pa2.entry.char2) return false;
} else {
return false;
}
if(pa1.entry.pos1 != 0xffff) {
if (pa1.entry.pos1 == pa2.entry.pos0) {
if(pa1.entry.char1 != pa2.entry.char0) return false;
} else if(pa1.entry.pos1 == pa2.entry.pos1) {
if(pa1.entry.char1 != pa2.entry.char1) return false;
} else if(pa1.entry.pos1 == pa2.entry.pos2) {
if(pa1.entry.char1 != pa2.entry.char2) return false;
} else {
return false;
}
}
if(pa1.entry.pos2 != 0xffff) {
if (pa1.entry.pos2 == pa2.entry.pos0) {
if(pa1.entry.char2 != pa2.entry.char0) return false;
} else if(pa1.entry.pos2 == pa2.entry.pos1) {
if(pa1.entry.char2 != pa2.entry.char1) return false;
} else if(pa1.entry.pos2 == pa2.entry.pos2) {
if(pa1.entry.char2 != pa2.entry.char2) return false;
} else {
return false;
}
}
return true;
}
static bool samePartialAlignment(PartialAlignment pa1, PartialAlignment pa2) {
return sameHalfPartialAlignment(pa1, pa2) && sameHalfPartialAlignment(pa2, pa1);
}
static bool validPartialAlignment(PartialAlignment pa) {
if(pa.entry.pos0 != 0xffff) {
if(pa.entry.pos0 == pa.entry.pos1) return false;
if(pa.entry.pos0 == pa.entry.pos2) return false;
} else {
if(pa.entry.pos1 != 0xffff) return false;
if(pa.entry.pos2 != 0xffff) return false;
}
if(pa.entry.pos1 != 0xffff) {
if(pa.entry.pos1 == pa.entry.pos2) return false;
} else {
if(pa.entry.pos2 != 0xffff) return false;
}
return true;
}
#endif
extern
void printHit(const EList<BTRefString >& os,
const Hit& h,
const BTDnaString& qry,
size_t qlen,
uint32_t unrevOff,
uint32_t oneRevOff,
uint32_t twoRevOff,
uint32_t threeRevOff,
bool ebwtFw);
/**
* A synchronized data structure for storing partial alignments
* associated with patids, with particular attention to compactness.
*/
class PartialAlignmentManager {
public:
PartialAlignmentManager(size_t listSz = 10 * 1024 * 1024) {
// Reserve space for 10M partialsList entries = 40 MB
_partialsList.reserveExact(listSz);
}
~PartialAlignmentManager() { }
/**
* Add a set of partial alignments for a particular patid into the
* partial-alignment database. This version locks the database,
* and so is safe to call if there are potential readers or
* writers currently running.
*/
void addPartials(uint32_t patid, const EList<PartialAlignment>& ps) {
if(ps.size() == 0) return;
ThreadSafe _ts(&mutex_m);
size_t origPlSz = _partialsList.size();
// Assert that the entry doesn't exist yet
assert(_partialsMap.find(patid) == _partialsMap.end());
if(ps.size() == 1) {
_partialsMap[patid] = ps[0];
_partialsMap[patid].entry.type = 0; // singleton
} else {
#ifndef NDEBUG
// Make sure there are not duplicate entries
for(size_t i = 0; i < ps.size()-1; i++)
for(size_t j = i+1; j < ps.size(); j++)
assert(!samePartialAlignment(ps[i], ps[j]));
#endif
// Insert a "pointer" record into the map that refers to
// the stretch of the _partialsList vector that contains
// the partial alignments.
PartialAlignment al;
al.u64.u64 = 0xffffffffffffffffllu;
al.off.off = origPlSz;
al.off.type = 1; // list offset
_partialsMap[patid] = al; // install pointer
assert_gt(ps.size(), 1);
// Now add all the non-tail partial alignments (all but the
// last) to the _partialsList
for(size_t i = 0; i < ps.size()-1; i++) {
assert(validPartialAlignment(ps[i]));
_partialsList.push_back(ps[i]);
// list entry (non-tail)
_partialsList.back().entry.type = 2;
}
// Now add the tail (last) partial alignment and mark it as
// such
assert(validPartialAlignment(ps.back()));
_partialsList.push_back(ps.back());
// list tail
_partialsList.back().entry.type = 3;
#ifndef NDEBUG
// Make sure there are not duplicate entries
assert_eq(_partialsList.size(), origPlSz + ps.size());
for(size_t i = origPlSz; i < _partialsList.size()-1; i++) {
for(size_t j = i+1; j < _partialsList.size(); j++) {
assert(!samePartialAlignment(_partialsList[i], _partialsList[j]));
}
}
#endif
}
// Assert that we added an entry
assert(_partialsMap.find(patid) != _partialsMap.end());
}
/**
* Get a set of partial alignments for a particular patid out of
* the partial-alignment database.
*/
void getPartials(uint32_t patid, EList<PartialAlignment>& ps) {
assert_eq(0, ps.size());
ThreadSafe _ts(&mutex_m);
getPartialsUnsync(patid, ps);
}
/**
* Get a set of partial alignments for a particular patid out of
* the partial-alignment database. This version does not attempt to
* lock the database. This is more efficient than the synchronized
* version, but is unsafe if there are other threads that may be
* writing to the database.
*/
void getPartialsUnsync(uint32_t patid, EList<PartialAlignment>& ps) {
assert_eq(0, ps.size());
if(_partialsMap.find(patid) == _partialsMap.end()) {
return;
}
PartialAlignment al;
al.u64.u64 = _partialsMap[patid].u64.u64;
uint32_t type = al.unk.type;
if(type == 0) {
// singleton
ps.push_back(al);
} else {
// list
assert_eq(1, type);
uint32_t off = (uint32_t)al.off.off;
do {
assert_lt(off, _partialsList.size());
ASSERT_ONLY(type = _partialsList[off].entry.type);
assert(type == 2 || type == 3);
#ifndef NDEBUG
// Make sure this entry isn't equal to any other entry
for(size_t i = 0; i < ps.size(); i++) {
assert(validPartialAlignment(ps[i]));
assert(!samePartialAlignment(ps[i], _partialsList[off]));
}
#endif
assert(validPartialAlignment(_partialsList[off]));
ps.push_back(_partialsList[off]);
ASSERT_ONLY(uint32_t pos0 = ps.back().entry.pos0);
ASSERT_ONLY(uint32_t pos1 = ps.back().entry.pos1);
ASSERT_ONLY(uint32_t pos2 = ps.back().entry.pos2);
assert(pos1 == 0xffff || pos0 != pos1);
assert(pos2 == 0xffff || pos0 != pos2);
assert(pos2 == 0xffff || pos1 != pos2);
} while(_partialsList[off++].entry.type == 2);
assert_eq(3, _partialsList[off-1].entry.type);
}
assert_gt(ps.size(), 0);
}
/// Call to clear the database when there is only one element in it
void clear(uint32_t patid) {
assert_eq(1, _partialsMap.count(patid));
assert_eq(1, _partialsMap.size());
_partialsMap.erase(patid);
assert_eq(0, _partialsMap.size());
_partialsList.clear();
assert_eq(0, _partialsList.size());
}
size_t size() {
return _partialsMap.size();
}
/**
* Convert a partial alignment into a QueryMutation string.
*/
static uint8_t toMutsString(const PartialAlignment& pal,
const BTDnaString& seq,
const BTString& quals,
EList<QueryMutation>& muts,
bool maqPenalty = true)
{
muts.reserveExact(4);
assert_eq(0, muts.size());
uint32_t plen = (uint32_t)seq.length();
assert_gt(plen, 0);
assert_neq(1, pal.unk.type);
// Do first mutation
uint8_t oldQuals = 0;
uint32_t pos0 = pal.entry.pos0;
assert_lt(pos0, plen);
uint16_t tpos0 = plen-1-pos0;
uint32_t chr0 = pal.entry.char0;
uint8_t oldChar = (uint8_t)seq[tpos0];
uint8_t oldQual0 = mmPenalty(maqPenalty, phredCharToPhredQual(quals[tpos0]));
assert_leq(oldQual0, 99);
oldQuals += oldQual0; // take quality hit
muts.push_back(QueryMutation(tpos0, oldChar, chr0));
if(pal.entry.pos1 != 0xffff) {
// Do second mutation
uint32_t pos1 = pal.entry.pos1;
assert_lt(pos1, plen);
uint16_t tpos1 = plen-1-pos1;
uint32_t chr1 = pal.entry.char1;
oldChar = (uint8_t)seq[tpos1];
uint8_t oldQual1 = mmPenalty(maqPenalty, phredCharToPhredQual(quals[tpos1]));
assert_leq(oldQual1, 99);
oldQuals += oldQual1; // take quality hit
assert_neq(tpos1, tpos0);
muts.push_back(QueryMutation(tpos1, oldChar, chr1));
if(pal.entry.pos2 != 0xffff) {
// Do second mutation
uint32_t pos2 = pal.entry.pos2;
assert_lt(pos2, plen);
uint16_t tpos2 = plen-1-pos2;
uint32_t chr2 = pal.entry.char2;
oldChar = (uint8_t)seq[tpos2];
uint8_t oldQual2 = mmPenalty(maqPenalty, phredCharToPhredQual(quals[tpos2]));
assert_leq(oldQual2, 99);
oldQuals += oldQual2; // take quality hit
assert_neq(tpos2, tpos0);
assert_neq(tpos2, tpos1);
muts.push_back(QueryMutation(tpos2, oldChar, chr2)); // apply mutation
}
}
assert_gt(muts.size(), 0);
assert_leq(muts.size(), 3);
return oldQuals;
}
private:
/// Maps patids to partial alignments for that patid
map<uint32_t, PartialAlignment> _partialsMap;
/// Overflow for when a patid has more than 1 partial alignment
EList<PartialAlignment> _partialsList;
/// Lock for 'partialsMap' and 'partialsList'; necessary because
/// search threads will be reading and writing them
MUTEX_T mutex_m;
};
#endif /* EBWT_SEARCH_UTIL_H_ */