forked from pkrusche/vt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genotype.cpp
316 lines (283 loc) · 11.1 KB
/
genotype.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
313
314
315
316
/* The MIT License
Copyright (c) 2013 Adrian Tan <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include "genotype.h"
#include "lhmm_genotyping_record.h"
#include "chmm.h"
namespace
{
class Igor : Program
{
public:
std::string version;
///////////
//options//
///////////
std::string sample_id;
std::string input_vcf_file;
std::string input_sam_file;
std::string output_vcf_file;
std::string ref_fasta_file;
std::string model;
std::vector<GenomeInterval> intervals;
bool iterate_by_site;
bool debug;
///////
//i/o//
///////
BCFOrderedReader *vodr;
BAMOrderedReader *sodr;
BCFOrderedWriter *vodw;
bcf1_t *v;
bam1_t *s;
/////////
//stats//
/////////
int32_t no_snps_genotyped;
int32_t no_indels_genotyped;
/////////
//tools//
/////////
faidx_t *fai;
Igor(int argc, char ** argv)
{
//////////////////////////
//options initialization//
//////////////////////////
try
{
std::string desc = "Genotypes SNPs and Indels for a sample\n";
version = "0.57";
TCLAP::CmdLine cmd(desc, ' ', version);
VTOutput my; cmd.setOutput(&my);
TCLAP::ValueArg<std::string> arg_intervals("i", "i", "intervals", false, "", "str", cmd);
TCLAP::ValueArg<std::string> arg_interval_list("I", "I", "file containing list of intervals []", false, "", "str", cmd);
TCLAP::ValueArg<std::string> arg_input_sam_file("b", "b", "input BAM file", true, "", "str", cmd);
TCLAP::ValueArg<std::string> arg_output_vcf_file("o", "o", "output VCF file", false, "-", "file", cmd);
TCLAP::ValueArg<std::string> arg_sample_id("s", "s", "sample ID", true, "", "str", cmd);
TCLAP::ValueArg<std::string> arg_ref_fasta_file("r", "r", "reference sequence fasta file []", true, "", "str", cmd);
TCLAP::ValueArg<std::string> arg_model("m", "m", "model [lhmm]", true, "lhmm", "str", cmd);
TCLAP::SwitchArg arg_iterate_by_site("c", "c", "iterate by candidate sites", cmd, false);
TCLAP::SwitchArg arg_debug("d", "d", "debug alignments", cmd, false);
TCLAP::UnlabeledValueArg<std::string> arg_input_vcf_file("<in.vcf>", "input VCF file", true, "","file", cmd);
cmd.parse(argc, argv);
input_vcf_file = arg_input_vcf_file.getValue();
input_sam_file = arg_input_sam_file.getValue();
output_vcf_file = arg_output_vcf_file.getValue();
ref_fasta_file = arg_ref_fasta_file.getValue();
sample_id = arg_sample_id.getValue();
parse_intervals(intervals, arg_interval_list.getValue(), arg_intervals.getValue());
iterate_by_site = arg_iterate_by_site.getValue();
debug = arg_debug.getValue();
}
catch (TCLAP::ArgException &e)
{
std::cerr << "error: " << e.error() << " for arg " << e.argId() << "\n";
abort();
}
};
~Igor()
{
};
void print_options()
{
std::clog << "genotype v" << version << "\n\n";
std::clog << "options: input VCF file " << input_vcf_file << "\n";
std::clog << " [b] input BAM file " << input_sam_file << "\n";
std::clog << " [o] output VCF file " << output_vcf_file << "\n";
std::clog << " [c] iterate by site " << (iterate_by_site ? "yes" : "no") << "\n";
std::clog << " [s] sample ID " << sample_id << "\n";
print_ref_op(" [r] reference fasta file ", ref_fasta_file);
print_int_op(" [i] intervals ", intervals);
std::clog << "\n";
}
void initialize()
{
if (model!="lhmm" && model!="chmm")
{
fprintf(stderr, "[E:%s] Probe information appears to be missing, cannot proceed unless reference FASTA file is available\n", __FUNCTION__);
exit(1);
}
//////////////////////
//i/o initialization//
//////////////////////
vodr = new BCFOrderedReader(input_vcf_file, intervals);
sodr = new BAMOrderedReader(input_sam_file, intervals);
vodw = new BCFOrderedWriter(output_vcf_file, 0);
bcf_hdr_add_sample(vodw->hdr, sample_id.c_str());
bcf_hdr_append(vodw->hdr, "##FORMAT=<ID=GT,Number=1,Type=String,Description=\"Genotype\">");
bcf_hdr_append(vodw->hdr, "##FORMAT=<ID=CT,Number=1,Type=String,Description=\"Count Genotype, number of repeat units as the genotype\">");
bcf_hdr_append(vodw->hdr, "##FORMAT=<ID=QT,Number=1,Type=String,Description=\"Qualitative Genotype, e for exact sequence, i for inexact sequence\">");
bcf_hdr_append(vodw->hdr, "##FORMAT=<ID=GQ,Number=1,Type=String,Description=\"Genotype Quality\">");
bcf_hdr_append(vodw->hdr, "##FORMAT=<ID=DP,Number=1,Type=Integer,Description=\"Depth\">");
bcf_hdr_append(vodw->hdr, "##FORMAT=<ID=RDP,Number=1,Type=Integer,Description=\"Raw Depth\">");
bcf_hdr_append(vodw->hdr, "##FORMAT=<ID=AD,Number=2,Type=Integer,Description=\"Allele Depth\">");
bcf_hdr_append(vodw->hdr, "##FORMAT=<ID=PL,Number=G,Type=Integer,Description=\"PHRED scaled genotype likelihood\">");
//////////////////////
//tool initialization//
//////////////////////
////////////////////////
//stats initialization//
////////////////////////
no_snps_genotyped = 0;
no_indels_genotyped = 0;
}
void print_stats()
{
std::clog << "\n";
std::clog << "Stats: SNPs genotyped " << no_snps_genotyped << "\n";
std::clog << " Indels genotyped " << no_indels_genotyped << "\n";
std::clog << "\n";
}
void genotype()
{
std::cerr << "genotyoing?\n" ;
if (iterate_by_site)
{
GenotypingRecord *record;
if (model=="lhmm")
{
record = new LHMMGenotypingRecord(fai);
}
else
{
}
bcf1_t *v = vodw->get_bcf1_from_pool();
bam1_t *s = bam_init1();
int32_t no_read = 0;
GenomeInterval interval;
while (vodr->read(v))
{
record->set(v);
std::string chrom(bcf_get_chrom(vodr->hdr, v));
interval.set(chrom, bcf_get_pos1(v), bcf_get_pos1(v));
sodr->jump_to_interval(interval);
while(sodr->read(s))
{
record->genotype(s);
}
// record.print(vodw);
++no_read;
}
}
else //iterate by reads
{
//get reads from bam
//let VCFPool process reads
// //pick up chromosomes from bam and vcf
// //hash table for sequences
// khash_t(sdict) *h = kh_init(sdict);
// khiter_t k;
// int32_t success;
// if (intervals.empty())
// {
// kstring_t s = {0,0,0};
// char** seqs = bam_hdr_get_target_name(sodr->hdr);
// for (uint32_t i=0; i<bam_hdr_get_n_targets(sodr->hdr); ++i)
// {
// if (kh_get(sdict, h, seqs[i])==kh_end(h))
// {
// char* seq = strdup(seqs[i]);
// k = kh_put(sdict, h, seq, &success);
// if (!success)
// {
// intervals.push_back(GenomeInterval(std::string(seq)));
// }
// else
// {
// free(seq);
// }
// }
// }
// free(seqs);
//
// int32_t nseqs;
// const char** seqs1 = bcf_hdr_seqnames(vodr->hdr, &nseqs);
// for (uint32_t i=0; i<nseqs; ++i)
// {
// if (kh_get(sdict, h, seqs1[i])==kh_end(h))
// {
// char* seq = strdup(seqs1[i]);
// k = kh_put(sdict, h, seq, &success);
// if (!success)
// {
// intervals.push_back(GenomeInterval(std::string(seq)));
// }
// else
// {
// free(seq);
// }
// }
// }
// free(seqs1);
//
// //clean up
// if (s.m) free(s.s);
// for (k = kh_begin(h); k != kh_end(h); ++k)
// {
// if (kh_exist(h, k))
// {
// free((char*)kh_key(h, k));
// }
// }
// kh_clear(sdict, h);
// }
//
// VCFGenotypingPool pool;
//
// //iterate through chromosomes
// for (uint32_t i=0; i<intervals.size(); ++i)
// {
// vodr->jump_to_interval(intervals[i]);
// sodr->jump_to_interval(intervals[i]);
//
// bcf1_t *v = vodw->get_bcf1_from_pool();
// while (vodr->read(v))
// {
// int32_t count = 0;
// while(sodr->read(s))
// {
// //update VCF records that overlap with read
// pool.process_read(s);
// ++count;
// }
//
// //remove records that occur before this read
// pool.flush();
// }
// }
//
// vodw->close();
}
}
private:
void swap(double& a, double& b)
{
b = (a=a+b) - b;
a -= b;
}
};
}
void genotype(int argc, char ** argv)
{
Igor igor(argc, argv);
igor.initialize();
igor.print_options();
igor.genotype();
igor.print_stats();
}