-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests01.h
308 lines (252 loc) · 7.45 KB
/
tests01.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
#ifndef GAURD_tests01
#define GAURD_tests01
void tester_01() {
using namespace std;
cout.precision(15);
ifstream fin("/home/anwoy/useful_data/vcf_data/bgm0042.vep.hg19.vcf");
if(not fin)
throw(domain_error("ERROR: file not present"));
string line;
getline(fin, line);
while(true) {
if(line.size() >= 6) {
const string temp(line.begin(), line.begin() + 6);
if(temp == "#CHROM")
break;
}
getline(fin, line);
}
const sample_info SIO(line, "controls.txt", "trios01.txt");
cout<< SIO <<"\n";
const initialization_info IIO(line);
cout<< IIO <<"\n";
const conditional_probty_table CPTO;
cout<< CPTO <<"\n";
AD_info ADIO(IIO);
size_t counter(0);
while(ADIO.read_once(fin, IIO)) {
counter += 1;
if(counter == 100)
break;
}
cout<< ADIO <<"\n";
EM_worker EMWO;
cout<< EMWO <<"\n";
const clock_t T1( clock() );
EMWO.EM_full(ADIO, SIO); // GPU calculation
const clock_t T2( clock() );
cout<< "GPU time = "<< double(T2 - T1)/CLOCKS_PER_SEC <<" seconds\n";
cout<< EMWO <<"\n";
EMWO.reset();
cout<< EMWO <<"\n";
const clock_t T3( clock() );
EMWO.EM_full_CPU(ADIO, SIO); // CPU calculation
const clock_t T4( clock() );
cout<< "CPU time = "<< double(T4 - T3)/CLOCKS_PER_SEC <<" seconds\n";
cout<< EMWO <<"\n";
caller CO(SIO);
cout<< CO <<"\n";
const clock_t T5( clock() );
CO.worker(ADIO, EMWO, SIO, CPTO);
const clock_t T6( clock() );
cout<< CO <<"\n";
CO.reset();
cout<< CO <<"\n";
const clock_t T7( clock() );
CO.worker_CPU(ADIO, EMWO, SIO, CPTO);
const clock_t T8( clock() );
cout<< CO <<"\n";
cout<< "GPU time for caller = " << double(T6 - T5)/CLOCKS_PER_SEC <<"\n";
cout<< "CPU time for caller = " << double(T8 - T7)/CLOCKS_PER_SEC <<"\n";
}
void tester_02() {
using namespace std;
cout.precision(15);
ifstream fin("/home/anwoy/useful_data/vcf_data/bgm0042.vep.hg19.vcf");
if(not fin)
throw(domain_error("ERROR: file not present"));
string line;
getline(fin, line);
while(true) {
if(line.size() >= 6) {
const string temp(line.begin(), line.begin() + 6);
if(temp == "#CHROM")
break;
}
getline(fin, line);
}
const sample_info SIO(line, "controls.txt", "trios.txt");
const initialization_info IIO(line);
const conditional_probty_table CPTO;
EM_worker EMWO;
caller CO(SIO);
AD_info ADIO(IIO);
int counter(0);
const clock_t T1( clock() );
while(ADIO.read_once(fin, IIO)) {
counter += 1;
EMWO.EM_full_CPU(ADIO, SIO); // CPU calculation
CO.worker_CPU(ADIO, EMWO, SIO, CPTO); // CPU calculation
if(counter % 1000000 == 0) {
const clock_t T2( clock() );
cout<< counter <<" "<< double(T2 - T1)/CLOCKS_PER_SEC <<"\n"; ;
cout.flush();
}
bool mark(0);
for(int i(0);i<CO.call_probty.size();++i)
if(CO.call_probty[i] > 0.9)
mark = 1;
if(mark)
break;
}
cout<< SIO <<"\n";
cout<< IIO <<"\n";
cout<< CPTO <<"\n";
cout<< ADIO <<"\n";
cout<< EMWO <<"\n";
cout<< CO <<"\n";
EMWO.reset();
CO.reset();
cout<< EMWO <<"\n";
cout<< CO <<"\n";
EMWO.EM_full(ADIO, SIO); // GPU calculation
CO.worker(ADIO, EMWO, SIO, CPTO); // GPU calculation
cout<< EMWO <<"\n";
cout<< CO <<"\n";
}
void master_CPU(const std::string & vcf_file, const std::string & controls_file, const std::string & trios_file, const std::string & outfile,const double THRESH) {
// computes the denovo calls using CPU
using namespace std;
cout<<"computing using CPU:\n";
cout<<"vcf_file = "<< vcf_file <<"\n";
cout<<"controls_file = "<< controls_file <<"\n";
cout<<"trios_file = "<< trios_file <<"\n";
cout<<"probability threshold = "<< THRESH <<"\n";
cout.precision(15);
ifstream fin(vcf_file.c_str());
if(not fin)
throw(domain_error("ERROR: file not present"));
string line;
getline(fin, line);
while(true) {
if(line.size() >= 6) {
const string temp(line.begin(), line.begin() + 6);
if(temp == "#CHROM")
break;
}
getline(fin, line);
}
const sample_info SIO(line, controls_file, trios_file);
const initialization_info IIO(line);
const conditional_probty_table CPTO;
EM_worker EMWO;
caller CO(SIO);
AD_info ADIO(IIO);
int counter(0);
const clock_t T1( clock() );
ofstream fout(outfile.c_str());
fout.precision(10);
while(ADIO.read_once(fin, IIO)) {
counter += 1;
if(ADIO.CHROM != 24 and ADIO.CHROM != 0) {
EMWO.EM_full_CPU(ADIO, SIO); // CPU calculation
CO.worker_CPU(ADIO, EMWO, SIO, CPTO); // CPU calculation
bool mark(0);
for(int i(0);i<CO.call_probty.size();++i) {
if(CO.call_probty[i] > THRESH) {
if(mark == 0) {
fout<< ADIO.integer_to_chromosome() <<"\t"<< ADIO.POS <<"\t";
mark = 1;
}
const vector<int> & row( SIO.trios[i] );
fout<< row[0] <<":"<< SIO.sample_names[ row[0] ] <<",";
fout<< row[1] <<":"<< SIO.sample_names[ row[1] ] <<",";
fout<< row[2] <<":"<< SIO.sample_names[ row[2] ] <<",";
fout<< "PP=" << CO.call_probty[i] <<"\t";
}
}
if(mark == 1)
fout<<"\n";
}
if(counter % 1000000 == 0) {
const clock_t T2( clock() );
cout<< counter <<" lines\t"<< double(T2 - T1)/CLOCKS_PER_SEC <<" seconds\n";
}
}
fin.close();
fout.close();
}
void master(const std::string & vcf_file, const std::string & controls_file, const std::string & trios_file, const std::string & outfile,const double THRESH) {
// computes the denovo calls using GPU
using namespace std;
cout<<"computing using GPU:\n";
cout<<"vcf_file = "<< vcf_file <<"\n";
cout<<"controls_file = "<< controls_file <<"\n";
cout<<"trios_file = "<< trios_file <<"\n";
cout<<"probability threshold = "<< THRESH <<"\n";
cout.precision(15);
ifstream fin(vcf_file.c_str());
if(not fin)
throw(domain_error("ERROR: file not present"));
string line;
getline(fin, line);
while(true) {
if(line.size() >= 6) {
const string temp(line.begin(), line.begin() + 6);
if(temp == "#CHROM")
break;
}
getline(fin, line);
}
const sample_info SIO(line, controls_file, trios_file);
const initialization_info IIO(line);
const conditional_probty_table CPTO;
EM_worker EMWO;
caller CO(SIO);
AD_info ADIO(IIO);
int counter(0);
const clock_t T1( clock() );
ofstream fout(outfile.c_str());
fout.precision(10);
while(ADIO.read_once(fin, IIO)) {
counter += 1;
if(ADIO.CHROM != 24 and ADIO.CHROM != 0) {
EMWO.EM_full(ADIO, SIO); // GPU calculation
CO.worker(ADIO, EMWO, SIO, CPTO); // GPU calculation
bool mark(0);
for(int i(0);i<CO.call_probty.size();++i) {
if(CO.call_probty[i] > THRESH) {
if(mark == 0) {
fout<< ADIO.integer_to_chromosome() <<"\t"<< ADIO.POS <<"\t";
mark = 1;
}
const vector<int> & row( SIO.trios[i] );
fout<< row[0] <<":"<< SIO.sample_names[ row[0] ] <<",";
fout<< row[1] <<":"<< SIO.sample_names[ row[1] ] <<",";
fout<< row[2] <<":"<< SIO.sample_names[ row[2] ] <<",";
fout<< "PP=" << CO.call_probty[i] <<"\t";
}
}
if(mark == 1)
fout<<"\n";
}
if(counter % 100000 == 0) {
const clock_t T2( clock() );
cout<< counter <<" lines\t"<< double(T2 - T1)/CLOCKS_PER_SEC <<" seconds\n";
}
}
fin.close();
fout.close();
}
void tester_03() {
using namespace std;
const string vcf_file("/home/anwoy/useful_data/vcf_data/bgm0042.vep.hg19.vcf");
const string controls_file("controls.txt");
const string trios_file("trios02.txt");
const string outfile_CPU("outfile_CPU.txt");
const string outfile_GPU("outfile_GPU.txt");
const double THRESH(0.97);
//master_CPU(vcf_file, controls_file, trios_file, outfile_CPU, THRESH); // CPU computation
master(vcf_file, controls_file, trios_file, outfile_GPU, THRESH); // GPU computation
}
#endif