forked from vcflib/vcflib
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvcf2tsv.cpp
218 lines (179 loc) · 6.32 KB
/
vcf2tsv.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
/*
vcflib C++ library for parsing and manipulating VCF files
Copyright © 2010-2020 Erik Garrison
Copyright © 2020 Pjotr Prins
This software is published under the MIT License. See the LICENSE file.
*/
#include "Variant.h"
#include <getopt.h>
using namespace std;
using namespace vcflib;
void printSummary(char** argv) {
cerr << "usage: vcf2tsv [-n null_string] [-g]" << " [vcf file]" << endl << endl
<< "Converts VCF to per-allelle or per-genotype tab-delimited format, using null string to replace empty values in the table." << endl
<< "Specifying -g will output one line per sample with genotype information." << endl
<< "When there is more than one alt allele there will be multiple rows, one for each allele and, the info will match the 'A' index" << endl;
cerr << endl << "Type: transformation" << endl << endl;
exit(1);
}
void loadGenoSS(std::stringstream & ss,
std::stringstream & info,
vcflib::Variant & var,
vcflib::VariantCallFile & vcf,
std::string & nullval,
std::vector<std::string> & formatfields){
for (map<string, map<string, vector<string> > >::iterator s = var.samples.begin(); s != var.samples.end(); ++s) {
const string& sampleName = s->first;
ss << info.str() << "\t" << sampleName;
map<string, vector<string> >& sample = s->second;
for (vector<string>::iterator f = formatfields.begin(); f != formatfields.end(); ++f) {
if (sample.find(*f) != sample.end()) {
ss << "\t" << join(sample[*f], ",");
} else {
ss << "\t" << nullval;
}
}
ss << std::endl;
}
}
void loadInfoSS(std::stringstream & ss,
std::map<std::string, bool> & infoToKeep,
vcflib::Variant & var,
vcflib::VariantCallFile & vcf,
std::string & nullval,
std::vector<std::string> & formatfields,
bool genotype){
int altindex = 0;
for (vector<string>::iterator a = var.alt.begin(); a != var.alt.end(); ++a, ++altindex) {
string& altallele = *a;
std::stringstream o;
o << var.sequenceName << "\t"
<< var.position << "\t"
<< var.id << "\t"
<< var.ref << "\t"
<< altallele << "\t"
<< var.quality << "\t"
<< var.filter;
for(std::map<std::string, bool>::iterator it = infoToKeep.begin(); it != infoToKeep.end(); it++){
if(var.info.find(it->first) == var.info.end()){
o << "\t" << nullval ;
}
else{
if(it->second == true){
o << "\t" << var.info[it->first].front();
}
else{
if(vcf.infoCounts.find(it->first) == vcf.infoCounts.end()){
if(vcf.infoCounts[it->first] == ALLELE_NUMBER){
o << "\t" << var.info[it->first].at(altindex) ;
}
}
else{
o << "\t" << join(var.info[it->first], ",") ;
}
}
}
}
if(genotype){
loadGenoSS(ss, o, var, vcf, nullval, formatfields);
}
else{
ss << o.str() << std::endl;
}
}
}
int main(int argc, char** argv) {
string nullval = ".";
bool genotypes = false;
int c;
while (true) {
static struct option long_options[] =
{
/* These options set a flag. */
//{"verbose", no_argument, &verbose_flag, 1},
{"help", no_argument, 0, 'h'},
{"null-value", required_argument, 0, 'n'},
{"genotypes", no_argument, 0, 'g'},
{0, 0, 0, 0}
};
/* getopt_long stores the option index here. */
int option_index = 0;
c = getopt_long (argc, argv, "hn:g",
long_options, &option_index);
if (c == -1)
break;
switch (c) {
case 'n':
nullval = optarg;
break;
case 'g':
genotypes = true;
break;
case 'h':
printSummary(argv);
break;
case '?':
printSummary(argv);
exit(1);
break;
default:
abort ();
}
}
VariantCallFile variantFile;
bool usingstdin = false;
string inputFilename;
if (optind == argc - 1) {
inputFilename = argv[optind];
variantFile.open(inputFilename);
} else {
if (!variantFile.open(std::cin)) {
if (argc == 1) {
printSummary(argv);
} else {
cerr << "could not open stdin for reading as VCF" << endl;
exit(1);
}
}
usingstdin = true;
}
if (!variantFile.is_open()) {
return 1;
}
// obtain all possible field names
// true means it a bool field flag
std::map<std::string, bool> keepFields;
for (map<string, VariantFieldType>::iterator i = variantFile.infoTypes.begin(); i != variantFile.infoTypes.end(); ++i) {
if (i->second == FIELD_BOOL) {
keepFields[i->first] = true;
} else {
keepFields[i->first] = false;
}
}
vector<string> formatfields;
if (genotypes) {
for (map<string, VariantFieldType>::iterator f = variantFile.formatTypes.begin(); f != variantFile.formatTypes.end(); ++f) {
formatfields.push_back(f->first);
}
}
// write header
// defaults
std::cout << "#CHROM\tPOS\tID\tREF\tALT\tQUAL\tFILTER";
for (std::map<std::string, bool>::iterator i = keepFields.begin(); i != keepFields.end(); ++i) {
cout << "\t" << i->first;
}
if (genotypes) {
cout << "\t" << "SAMPLE";
for (vector<string>::iterator f = formatfields.begin(); f != formatfields.end(); ++f) {
cout << "\t" << *f;
}
}
std::cout << std::endl;
Variant var(variantFile);
while (variantFile.getNextVariant(var)) {
stringstream outputRecord;
loadInfoSS(outputRecord, keepFields, var, variantFile, nullval, formatfields, genotypes);
std::cout << outputRecord.str() ;
}
return 0;
}