-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathhit_set.h
437 lines (389 loc) · 8.23 KB
/
hit_set.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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
/*
* hit_set.h
*
* Created on: Jul 31, 2009
* Author: Ben Langmead
*/
#ifndef HIT_SET_H_
#define HIT_SET_H_
#include <algorithm>
#include <limits.h>
#include "alphabet.h"
#include "assert_helpers.h"
#include "btypes.h"
#include "ds.h"
#include "edit.h"
#include "filebuf.h"
#include "sstring.h"
/**
* Encapsulates a hit contained within a HitSet that can be
* (de)serialized to/from FileBufs. Used for chaining.
*/
struct HitSetEnt {
typedef std::pair<TIndexOffU,TIndexOffU> UPair;
HitSetEnt() { }
/**
* Write binary representation of HitSetEnt to an OutFileBuf.
*/
void serialize(OutFileBuf& fb) const {
fb.writeChars((const char*)&h.first, 4);
fb.writeChars((const char*)&h.second, 4);
assert(fw == 0 || fw == 1);
fb.write(fw);
assert_geq(stratum, 0);
assert_lt(stratum, 4);
fb.write(stratum);
assert_eq(stratum, (cost >> 14));
fb.writeChars((const char*)&cost, 2);
fb.writeChars((const char*)&oms, 4);
uint32_t sz = (uint32_t)edits.size();
fb.writeChars((const char*)&sz, 4);
for (size_t i = 0; i < edits.size(); i++)
edits[i].serialize(fb);
fb.writeChars((const char*)&sz, 4);
}
/**
* Repopulate a HitSetEnt from its binary representation in FileBuf.
*/
void deserialize(FileBuf& fb) {
fb.get((char*)&h.first, 4);
fb.get((char*)&h.second, 4);
fw = fb.get();
assert(fw == 0 || fw == 1);
stratum = fb.get();
assert_geq(stratum, 0);
assert_lt(stratum, 4);
fb.get((char*)&cost, 2);
assert_eq(stratum, (cost >> 14));
fb.get((char*)&oms, 4);
uint32_t sz = 0;
fb.get((char*)&sz, 4);
assert_lt(sz, 1024);
edits.resize(sz);
for(uint32_t i = 0; i < sz; i++) {
edits[i].deserialize(fb);
}
fb.get((char*)&sz, 4);
assert_lt(sz, 1024);
}
/**
* Less than operator. Break HitSetEnt ties by:
* - Stratum, then
* - Cost, then
* - Position, then
* - Orientation
*/
int operator< (const HitSetEnt &rhs) const {
if(stratum < rhs.stratum) return 1;
if(stratum > rhs.stratum) return 0;
if(cost < rhs.cost) return 1;
if(cost > rhs.cost) return 0;
if(h < rhs.h) return 1;
if(h > rhs.h) return 0;
return (fw < rhs.fw)? 1 : 0;
}
/**
* Greater than operator.
*/
int operator> (const HitSetEnt &rhs) const {
if(stratum < rhs.stratum) return 0;
if(stratum > rhs.stratum) return 1;
if(cost < rhs.cost) return 0;
if(cost > rhs.cost) return 1;
if(h < rhs.h) return 0;
if(h > rhs.h) return 1;
return (fw <= rhs.fw)? 0 : 1;
}
/**
* Equality comparison operator.
*/
int operator== (const HitSetEnt &rhs) const {
return(stratum == rhs.stratum &&
cost == rhs.cost &&
fw == rhs.fw &&
h == rhs.h);
}
/**
* Indexing returns edits.
*/
Edit& operator[](unsigned x) {
return edits[x];
}
/**
* Indexing returns edits.
*/
const Edit& operator[](unsigned x) const {
return edits[x];
}
/**
* Another way to get at an edit.
*/
Edit& editAt(unsigned i) {
return edits[i];
}
/**
* Another way to get at a const edit.
*/
const Edit& editAt(unsigned i) const {
return edits[i];
}
/**
* Return the front entry.
*/
Edit& front() {
return edits.front();
}
/**
* Return the back entry.
*/
Edit& back() {
return edits.back();
}
/**
* Expand the entry list by one.
*/
void expand() {
edits.resize(edits.size() + 1);
}
/**
* Sort edits by position
*/
void sort() {
if(edits.size() > 1) edits.sort();
}
/**
* Return number of edits.
*/
size_t size() const {
return edits.size();
}
bool empty() const {
return edits.empty();
}
/**
* Write HitSetEnt to an output stream.
*/
friend std::ostream& operator << (std::ostream& os, const HitSetEnt& hse);
UPair h; // reference coordinates
uint8_t fw; // orientation
int8_t stratum; // stratum
uint16_t cost; // cost, including stratum
uint32_t oms; // # others
EList<Edit> edits; // edits to get from reference to subject
};
/**
* Encapsulates a set of hits that can be (de)serialized to/from
* FileBufs. Used for chaining.
*/
struct HitSet {
typedef EList<HitSetEnt> EntVec;
typedef std::pair<TIndexOffU,TIndexOffU> UPair;
HitSet() {
maxedStratum = -1;
}
HitSet(FileBuf& fb) {
deserialize(fb);
}
/**
* Write binary representation of HitSet to an OutFileBuf.
*/
void serialize(OutFileBuf& fb) const {
fb.write(0);
uint32_t i = (uint32_t)name.length();
assert_gt(i, 0);
fb.writeChars((const char*)&i, 4);
fb.writeChars(name.buf(), i);
i = (uint32_t)seq.length();
assert_gt(i, 0);
assert_lt(i, 1024);
fb.writeChars((const char*)&i, 4);
for(size_t j = 0; j < i; j++) {
fb.write("ACGTN"[(int)seq[j]]);
}
fb.writeChars(qual.buf(), i);
i = (uint32_t)ents.size();
fb.writeChars((const char*)&i, 4);
for (size_t i = 0; i < ents.size(); i++)
ents[i].serialize(fb);
fb.write(maxedStratum);
}
/**
* Repopulate a HitSet from its binary representation in FileBuf.
*/
void deserialize(FileBuf& fb) {
uint32_t sz = 0;
if(fb.get((char*)&sz, 4) != 4) {
name.clear();
seq.clear();
return;
}
assert_gt(sz, 0);
assert_lt(sz, 1024);
name.resize(sz);
fb.get(name.wbuf(), sz);
fb.get((char*)&sz, 4);
assert_gt(sz, 0);
assert_lt(sz, 1024);
seq.resize(sz);
for(size_t j = 0; j < sz; j++) {
seq[j] = asc2dna[fb.get()];
}
qual.resize(sz);
fb.get(qual.wbuf(), sz);
fb.get((char*)&sz, 4);
if(sz > 0) {
ents.resize(sz);
for(size_t i = 0; i < sz; i++) {
ents[i].deserialize(fb);
}
} else {
ents.clear();
}
maxedStratum = fb.get();
}
/**
* Return true iff this HitSet is initialized with a read (but not
* necessarily any alignments).
*/
bool initialized() const {
return !seq.empty();
}
/**
* Return true iff this HitSet has no hits.
*/
bool empty() const {
return ents.empty();
}
/**
* Return number of entries in this HitSet.
*/
size_t size() const {
return ents.size();
}
/**
* Remove all entries from this HitSet.
*/
void clear() {
maxedStratum = -1;
ents.clear();
}
/**
* Return the front entry.
*/
HitSetEnt& front() {
return ents.front();
}
/**
* Return the back entry.
*/
HitSetEnt& back() {
return ents.back();
}
/**
* Expand the entry list by one.
*/
void expand() {
ents.resize(ents.size() + 1);
assert(ents.back().empty());
}
/**
* Resize entry list
*/
void resize(size_t sz) {
ents.resize(sz);
}
/**
* Sort hits by stratum/penalty.
*/
void sort() {
if(ents.size() > 1) ents.sort();
}
/**
* Return true iff Ents are sorted
*/
bool sorted() const {
if(ents.empty()) return true;
for(size_t i = 0; i < ents.size()-1; i++) {
if(!(ents[i] < ents[i+1])) return false;
}
return true;
}
/**
* Remove the ith hit from the HitSet, shifting all subsequent hits
* up by one.
*/
void remove(size_t i) {
ents.erase(i);
}
/**
* Return true if strata are uniform across hits; assert if they're
* not.
*/
bool uniformStrata() const {
for(size_t i = 0; i < ents.size()-1; i++) {
assert(ents[i].stratum == ents[i+1].stratum);
}
return true;
}
/**
* Indexing returns entries.
*/
HitSetEnt& operator[](unsigned x) {
return ents[x];
}
/**
* Indexing returns entries.
*/
const HitSetEnt& operator[](unsigned x) const {
return ents[x];
}
/**
* Clear out all the strings and all the entries.
*/
void clearAll() {
name.clear();
seq.clear();
qual.clear();
ents.clear();
}
/**
*
*/
bool tryReplacing(UPair h,
bool fw,
uint16_t cost,
size_t& pos)
{
for(size_t i = 0; i < ents.size(); i++) {
if(ents[i].h == h && ents[i].fw == fw) {
if(cost < ents[i].cost) {
// New hit at same position is better! Replace it.
ents[i].h = h;
ents[i].fw = fw;
ents[i].stratum = cost >> 14;
ents[i].cost = cost;
pos = i;
return true;
} else {
pos = OFF_MASK;
return true;
}
}
}
return false;
}
/**
* Report up to 'khits' hits from this HitSet.
*/
void reportUpTo(std::ostream& os, int khits = INT_MAX);
/**
* Print this HitSet.
*/
friend std::ostream& operator << (std::ostream& os, const HitSet& hs);
BTString name;
BTDnaString seq;
BTString qual;
int8_t maxedStratum;
EList<HitSetEnt> ents;
};
#endif /* HIT_SET_H_ */