-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvcf_parser.py
executable file
·253 lines (184 loc) · 8.13 KB
/
vcf_parser.py
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
#!/usr/bin/python3
# Copyright 2015 Diogo N. Silva <[email protected]>
# Copyright 2020 Francisco Pina-Martins
# vcf_parser.py is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# Loci_counter is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with Loci_counter. If not, see <http://www.gnu.org/licenses/>.
# vcf_parser.py is that performs filtering and transformations steps on
# a VCF file that are not possible with vcftools
# Usage: python3 vcf_parser.py -h (will show all available options)
import argparse
import random
from collections import Counter
PARSER = argparse.ArgumentParser(description="Filtering of VCF files")
PARSER.add_argument("-vcf", dest="vcf_infile", help="Provide VCF "
" file(s).", required=True)
PARSER.add_argument("--remove-inv", dest="remove_inv", const=True,
action="store_const", help="Filters invariable SNP sites"
" from the VCF file (These sites may occurr when "
"individuals are removed from a VCF file).")
PARSER.add_argument("--remove-singletons", dest="remove_singletons", const=True,
action="store_const", help="Filters singletons SNP sites"
" from the VCF file.")
PARSER.add_argument("--one-snp", dest="one_snp", const=True,
action="store_const", help="Filters the VCF file so that"
" only one SNP per locus is retained - The first one")
PARSER.add_argument("--random-snp", dest="rnd_snp", const=True,
action="store_const", help="Filters the VCF file so that"
" only one random SNP per locus is retained.")
PARSER.add_argument("--center-snp", dest="center_snp", const=True,
action="store_const", help="Filters the VCF file so that"
" only the SNP closest to the locus center is retained.")
PARSER.add_argument("--distance", dest="distance", default=0, type=int,
help="Filters the VCF file so that"
" each SNP is at least DIST appart from the next.")
ARG = PARSER.parse_args()
def remove_sites(vcf_file, mode="inv", suffix="_NoInv.vcf"):
"""
Removes invariable sites from a VCF file. This assumes that the genotype
columns start at the 10th column until the last column
:param vcf_file: string, path to vcf file
:param mode: string, specifies the removal operation. May be one of the
following:
.:"inv": Removes invariable sites
.:"singletons": Removes singleton sites
:param suffix: string, the suffix of the output file.
"""
vcf_output = vcf_file.split(".")[0] + suffix
with open(vcf_file) as vcf_handle, open(vcf_output, "w") as vcf_out:
for line in vcf_handle:
if line.startswith("#"):
vcf_out.write(line)
elif line.strip() != "":
# Get genotypes. Remove genotypes with no data.
genotypes = [x.split(":")[0] for x in line.split()[9:] if x.split(":")[0] != "./."]
if mode == "inv":
# If number of unique genotypes higher than 1, save SNP
if len(set(genotypes)) > 1:
vcf_out.write(line)
elif mode == "singletons":
gens = Counter(genotypes)
# Remove most common genotype
del gens[gens.most_common()[0][0]]
# Check if remaining genotype count is higher than 1
if sum(gens.values()) > 1:
vcf_out.write(line)
def filter_one_snp(vcf_file):
"""
Filters a VCF file so that only one SNP per locus (the first) is retained
"""
vcf_output = vcf_file.split(".")[0] + "OneSNP.vcf"
chrom_list = []
with open(vcf_file) as vcf_handle, open(vcf_output, "w") as vcf_out:
for line in vcf_handle:
if line.startswith("#"):
vcf_out.write(line)
elif line.strip() != "":
# Get chrom number
chrom = line.split()[0]
if chrom not in chrom_list:
vcf_out.write(line)
chrom_list.append(chrom)
def filter_random_snp(vcf_file):
"""
Filters a VCF file so that only one random SNP per locus is retained.
"""
vcf_output = vcf_file.split(".")[0] + "RandSNP.vcf"
current_chrom = 0
loci_snps = []
with open(vcf_file) as vcf_handle, open(vcf_output, "w") as vcf_out:
for line in vcf_handle:
if line.startswith("#"):
vcf_out.write(line)
elif line.strip() != "":
# Get chrom number
chrom = line.split()[0]
if chrom != current_chrom and loci_snps != []:
choosen = random.choice(loci_snps)
vcf_out.write(choosen)
loci_snps = [line]
current_chrom = chrom
else:
loci_snps += [line]
vcf_out.write(random.choice(loci_snps))
def filter_center_snp(vcf_file):
"""
Filters a VCF file so that only one SNP per locus (the one closer to the
center) is retained
"""
vcf_output = vcf_file.split(".")[0] + "CenterSNP.vcf"
current_chrom = ""
line_list = []
with open(vcf_file) as vcf_handle, open(vcf_output, "w") as vcf_out:
for line in vcf_handle:
if line.startswith("#"):
vcf_out.write(line)
elif line.strip() != "":
# Get chrom number
chrom = line.split()[0]
# Get SNP position
pos = int(line.split()[1])
if chrom != current_chrom and current_chrom != "":
closest = min(pos_list, key=lambda x: abs(x - 45))
vcf_out.write(line_list[pos_list.index(closest)])
pos_list = [pos]
line_list = [line]
current_chrom = chrom
elif chrom != current_chrom:
pos_list = [pos]
line_list = [line]
current_chrom = chrom
else:
pos_list += [pos]
line_list += [line]
closest = min(pos_list, key=lambda x: abs(x - 45))
vcf_out.write(line_list[pos_list.index(closest)])
def filter_min_dist(vcf_file, dist):
"""
Filters a VCF to ensure that loci are at least *dist* apart
"""
vcf_output = vcf_file.split(".")[0] + "_mindist" + str(dist) + ".vcf"
current_chrom = ""
last_locus = []
with open(vcf_file) as vcf_handle, open(vcf_output, "w") as vcf_out:
for line in vcf_handle:
if line.startswith("#"):
vcf_out.write(line)
elif line.strip() != "":
# Get chrom number
chrom = line.split()[0]
# Get SNP position
pos = int(line.split()[1])
if chrom == current_chrom and pos - last_locus >= dist:
vcf_out.write(line)
last_locus = pos
elif chrom != current_chrom:
last_locus = pos
current_chrom = chrom
vcf_out.write(line)
def main():
"""
Main function that controls what to do.
"""
# Args
vcf_file = ARG.vcf_infile
if ARG.remove_inv:
remove_sites(vcf_file)
if ARG.remove_singletons:
remove_sites(vcf_file, mode="singletons", suffix="_NoSing.vcf")
if ARG.one_snp:
filter_one_snp(vcf_file)
if ARG.rnd_snp:
filter_random_snp(vcf_file)
if ARG.center_snp:
filter_center_snp(vcf_file)
if ARG.distance > 0:
filter_min_dist(vcf_file, ARG.distance)
main()