-
Notifications
You must be signed in to change notification settings - Fork 38
/
decompose.cpp
213 lines (177 loc) · 6.56 KB
/
decompose.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
/* The MIT License
Copyright (c) 2014 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 "decompose.h"
namespace
{
class Igor : Program
{
public:
///////////
//options//
///////////
std::string input_vcf_file;
std::string output_vcf_file;
std::vector<GenomeInterval> intervals;
std::string ref_fasta_file;
///////
//i/o//
///////
BCFOrderedReader *odr;
BCFOrderedWriter *odw;
bcf1_t *v;
kstring_t s;
kstring_t new_alleles;
kstring_t old_alleles;
/////////
//stats//
/////////
uint32_t no_variants;
uint32_t no_biallelic;
uint32_t no_multiallelic;
uint32_t no_additional_biallelic;
/////////
//tools//
/////////
VariantManip *vm;
Igor(int argc, char **argv)
{
version = "0.5";
//////////////////////////
//options initialization//
//////////////////////////
try
{
std::string desc = "decomposes multialleic variants into biallelic in a VCF file, only sites are output.";
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, "", "file", cmd);
TCLAP::ValueArg<std::string> arg_output_vcf_file("o", "o", "output VCF file [-]", false, "-", "str", cmd);
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();
output_vcf_file = arg_output_vcf_file.getValue();
parse_intervals(intervals, arg_interval_list.getValue(), arg_intervals.getValue());
}
catch (TCLAP::ArgException &e)
{
std::cerr << "error: " << e.error() << " for arg " << e.argId() << "\n";
abort();
}
};
void initialize()
{
//////////////////////
//i/o initialization//
//////////////////////
odr = new BCFOrderedReader(input_vcf_file, intervals);
odw = new BCFOrderedWriter(output_vcf_file, 100000);
odw->link_hdr(bcf_hdr_subset(odr->hdr, 0, 0, 0));
bcf_hdr_append(odw->hdr, "##INFO=<ID=OLD_MULTIALLELIC,Number=1,Type=String,Description=\"Original chr:pos:ref:alt encoding\">\n");
odw->write_hdr();
s = {0,0,0};
old_alleles = {0,0,0};
new_alleles = {0,0,0};
////////////////////////
//stats initialization//
////////////////////////
no_variants = 0;
no_biallelic = 0;
no_multiallelic = 0;
no_additional_biallelic = 0;
////////////////////////
//tools initialization//
////////////////////////
}
void decompose()
{
v = odw->get_bcf1_from_pool();
Variant variant;
while (odr->read(v))
{
bcf_unpack(v, BCF_UN_INFO);
int32_t n_allele = bcf_get_n_allele(v);
if (n_allele > 2)
{
++no_multiallelic;
no_additional_biallelic += n_allele-1;
old_alleles.l = 0;
bcf_variant2string(odw->hdr, v, &old_alleles);
int32_t rid = bcf_get_rid(v);
int32_t pos1 = bcf_get_pos1(v);
char** allele = bcf_get_allele(v);
for (uint32_t i=1; i<n_allele; ++i)
{
bcf_set_rid(v, rid);
bcf_set_pos1(v, pos1);
new_alleles.l=0;
kputs(allele[0], &new_alleles);
kputc(',', &new_alleles);
kputs(allele[i], &new_alleles);
bcf_update_alleles_str(odw->hdr, v, new_alleles.s);
bcf_update_info_string(odw->hdr, v, "OLD_MULTIALLELIC", old_alleles.s);
bcf_subset(odw->hdr, v, 0, 0);
odw->write(v);
v = odw->get_bcf1_from_pool();
}
}
else
{
++no_biallelic;
bcf_subset(odw->hdr, v, 0, 0);
odw->write(v);
v = odw->get_bcf1_from_pool();
}
++no_variants;
}
odr->close();
odw->close();
};
void print_options()
{
std::clog << "decompose v" << version << "\n";
std::clog << "\n";
std::clog << "options: input VCF file " << input_vcf_file << "\n";
std::clog << " [o] output VCF file " << output_vcf_file << "\n";
print_int_op(" [i] intervals ", intervals);
std::clog << "\n";
}
void print_stats()
{
std::clog << "\n";
std::clog << "stats: no. variants : " << no_variants << "\n";
std::clog << " no. biallelic variants : " << no_biallelic << "\n";
std::clog << " no. multiallelic variants : " << no_multiallelic << "\n";
std::clog << "\n";
std::clog << " no. additional biallelics : " << no_additional_biallelic << "\n";
std::clog << " after decomposition\n";
std::clog << "\n";
};
~Igor() {};
private:
};
}
void decompose(int argc, char ** argv)
{
Igor igor(argc, argv);
igor.print_options();
igor.initialize();
igor.decompose();
igor.print_stats();
};