-
Notifications
You must be signed in to change notification settings - Fork 11
/
StreamCounter.hpp
361 lines (308 loc) · 9.03 KB
/
StreamCounter.hpp
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
#ifndef STREAMCOUNTER_HPP
#define STREAMCOUNTER_HPP
#include <sstream>
#include <stdint.h>
#include <string>
#include <cmath>
#include <fstream>
#include <assert.h>
#include "lsb.hpp"
size_t roundUpPowerOfTwo(size_t size) {
size--;
size |= size>>1;
size |= size>>2;
size |= size>>4;
size |= size>>8;
size |= size>>16;
size |= size>>32;
size++;
return size;
}
class StreamCounter {
public:
StreamCounter(double e_, int seed_) : MAX_TABLE(32), maxVal(3ULL), countWidth(2), countsPerLong(32), e(e_), seed(seed_), sumCount(0) {
size_t numcounts = (size_t)(48.0/(e*e) + 1); // approx 3 std-dev, true with 0.001 prob.
if (numcounts < 8192) { numcounts = 8192;}
size =(numcounts+countsPerLong-1)/countsPerLong; // size is number of uint64_t's use
size = roundUpPowerOfTwo(size);
mask = (size * countsPerLong) -1;
maxCount = size * countsPerLong * maxVal;
M = new size_t[MAX_TABLE];
memset(M,0,MAX_TABLE*sizeof(size_t));
table = new uint64_t[size*MAX_TABLE];
memset(table, 0, size*MAX_TABLE*sizeof(uint64_t));
}
StreamCounter(const StreamCounter& o) : seed(o.seed), e(o.e), size(o.size), maxCount(o.maxCount), mask(o.mask), MAX_TABLE(o.MAX_TABLE), countWidth(o.countWidth), countsPerLong(o.countsPerLong), maxVal(o.maxVal), sumCount(0) {
// copy constructor, creates object of same size with same seed, but empty data
M = new size_t[MAX_TABLE];
memset(M,0,MAX_TABLE*sizeof(size_t));
table = new uint64_t[size*MAX_TABLE];
memset(table, 0, size*MAX_TABLE*sizeof(uint64_t));
}
~StreamCounter() {
delete[] table;
table = 0;
delete[] M;
M = 0;
}
int getSeed() const {
return seed;
}
void operator()(uint64_t hashval) {
sumCount++;
// hashval is XXX .. XXX1000.. (w times) ..00 0
//size_t w = bitScanForward(hashval); // 1-based index of first 1
size_t w = __builtin_ctz(hashval);
if (w >= MAX_TABLE) {
w = MAX_TABLE-1;
}
if (M[w] == size*countsPerLong*maxVal) {
return;
}
// hashval is now XXXX...XX, random
uint64_t hval = hashval >> (w+1); // shift away pattern of XXX10000
uint64_t index = hval & mask;
uint64_t val = getVal(index,w);
if (val != maxVal) { // max count
setVal(index,w,val+1);
M[w]++;
}
}
bool join(const StreamCounter& o) {
if (size != o.size || seed != o.seed) {
return false;
}
for (size_t i = 0; i < MAX_TABLE; i++) {
M[i] = 0;
for (size_t j = 0; j < size*countsPerLong; j++) {
uint64_t val = getVal(j,i);
uint64_t oval = o.getVal(j,i);
//setVal(j,i,getVal(j,i)+o.getVal(j,i));
setVal(j,i,val+oval);
M[i] += getVal(j,i);
}
}
sumCount += o.sumCount;
return true;
}
size_t F0() const {
size_t R = size*countsPerLong;
double sum = 0;
int n = 0;
double limit = 0.2;
while (n == 0 && limit > 1e-8) {
for (size_t i = 0; i < MAX_TABLE; i++) {
size_t ts = 0;
for (size_t j = 0; j < R; j++) {
if (getVal(j,i) > 0) {
ts++;
}
}
if (ts == 0) {
// nothing in this level
// hack to break out of loop
limit = 0;
break;
}
if (ts <= (1-limit)*R && ((ts >= limit*R) || i==0)) {
double est = (log(1.0-ts/((double) R))/log(1.0-1.0/R)) * pow(2.0,i+1);
//std::cout << i << " " << ts << " " << limit<< " " << est << std::endl;
sum += est;
n++;
break;
}
}
limit = limit/1.5;
}
if (n == 0) {
return 0;
} else {
return (size_t)(sum/n);
}
}
size_t F1() const {
return sumCount;
}
size_t f1() const {
size_t R = size*countsPerLong;
double sum = 0;
int n = 0;
double limit = 0.2;
while (n == 0 && limit > 1e-8) {
//std::cout << "R = " << R << std::endl;
for (size_t i = 0; i < MAX_TABLE; i++) {
size_t r1 = 0, r0 = 0;
for (size_t j = 0; j < R; j++) {
uint64_t val = getVal(j,i);
if (val == 0) {
r0++;
}
if (val == 1) {
r1++;
}
}
if (r0 == R) {
// empty level
limit = 0;
break;
}
if (((r0 <= (1-limit)*R) || i==0) && (r0 >= limit*R)) {
// i==0 takes care of small first levels where R is too large
sum += (R-1) * (r1/((double) r0)) * pow(2.0,i+1);
n++;
break;
}
}
limit = limit/1.5;
}
if (n==0) {
return 0;
} else {
return (size_t) (sum/n);
}
}
std::string humanReport() const {
std::stringstream s;
size_t eF0 = F0();
size_t ef1 = f1();
size_t eF1 = sumCount;
s << readable(eF0-ef1) << " repeated, " <<
readable(eF0) << " distinct, " <<
readable(ef1) << " singletons, " <<
readable(eF1) << " total k-mers processed";
return s.str();
}
std::string readable(size_t x) const {
std::stringstream s;
if (x < (1ULL<<10)) {
s << x;
} else if (x < (1ULL<<20)) {
s << (x/1024) << "K";
} else if (x < (1ULL<<30)) {
s << (x/(1ULL<<20)) << "M";
} else {
s << (x/(1ULL<<30)) << "G";
}
return s.str();
}
std::string report(bool useTSV = false) const {
std::stringstream s;
/*
size_t R = size*countsPerLong;
s << "R = " << R << std::endl;
for (size_t i = 0; i < MAX_TABLE; i++) {
int count[4] = {0,0,0,0};
s << "M[" << i << "] = " << M[i]<< std::endl;
for (size_t j = 0; j < R; j++) {
uint64_t val = getVal(j,i);
count[val]++;
}
s << count[0] << ", " << count[1] << ", " << count[2] << ", " << count[3] << std::endl;
}
s << std::endl << F0() << std::endl;
*/
if (useTSV) {
s << F0() << "\t" << f1() << "\t" << F1() << std::endl;
} else {
s << "F0 = " << F0() << std::endl;
s << "f1 = " << f1() << std::endl;
s << "F1 = " << sumCount << std::endl;
}
return s.str();
}
bool writeBinary(const std::string& fn) {
std::ofstream out;
out.open(fn.c_str(), std::ios::out | std::ios::binary);
if (!out.is_open()) {
std::cerr << "Error: could not write to file " << fn << std::endl;
return false;
}
// 1. write out seed
out.write((char*)&seed, sizeof(seed));
// 2. write out size
out.write((char*)&size, sizeof(size));
// 3. write out e
out.write((char*)&e, sizeof(e));
// 3.5 write out sumCount
out.write((char*)&sumCount, sizeof(sumCount));
// 4. write out MAX_TABLE
out.write((char*)&MAX_TABLE, sizeof(MAX_TABLE));
// 5. write out M
out.write((char*)M, MAX_TABLE*sizeof(M[0]));
// 6. write out table
out.write((char*)table, size*MAX_TABLE*sizeof(table[0]));
out.flush();
out.close();
return true;
}
bool loadBinary(const std::string& fn) {
std::ifstream in;
size_t oldsize = size;
in.open(fn.c_str(), std::ios::in | std::ios::binary);
// 1. read seed
in.read((char*)&seed,sizeof(seed));
// 2. read size
in.read((char*)&size,sizeof(size));
// 3. read e
in.read((char*)&e, sizeof(e));
// 3.5 read sumCount
in.read((char*)&sumCount, sizeof(sumCount));
size_t max_table;
// 4. read MAX_TABLE
in.read((char*)&max_table, sizeof(max_table));
if(MAX_TABLE != max_table) {
std::cerr <<"Error: Max table size doesn't match" << std::endl;
std::cerr << "MAX_TABLE = " << MAX_TABLE << std::endl << "max_table = " << max_table << std::endl;
exit(1);
}
// fill in other variables
mask = (size * countsPerLong) -1;
maxCount = size * countsPerLong * maxVal;
// allocate space
if (oldsize != size) {
if (M != 0) {
delete[] M;
M = new size_t[MAX_TABLE];
}
if (table != 0) {
delete[] table;
table = new uint64_t[size*MAX_TABLE];
}
}
// 5. read M
in.read((char*)M, MAX_TABLE*sizeof(M[0]));
// 6. read T
in.read((char*)table, size*MAX_TABLE*sizeof(table[0]));
in.close();
return true;
}
private:
uint64_t getVal(size_t index, size_t w) const {
size_t wordindex = w*size + (index/countsPerLong);
size_t bitindex = index & (countsPerLong-1) ;
uint64_t bitmask = maxVal<<(countWidth*bitindex);
return (table[wordindex] & bitmask) >> (countWidth*bitindex);
}
void setVal(size_t index, size_t w, uint64_t val) {
if (val > maxVal) {
val = maxVal;
}
size_t wordindex = w*size + (index/countsPerLong);
size_t bitindex = index & (countsPerLong-1);
uint64_t bitmask = maxVal<<(countWidth*bitindex);
table[wordindex] = (((val & maxVal) << (countWidth*bitindex)) & bitmask) | (table[wordindex] & ~bitmask);
}
int seed;
double e;
uint64_t *table;
size_t sumCount;
size_t *M;
size_t size;
size_t maxCount;
uint64_t mask;
const size_t MAX_TABLE;
const size_t countWidth; // number of bits per count, even number
const size_t countsPerLong; // fix this
const uint64_t maxVal; // has to be a power of 2-1
};
#endif