-
Notifications
You must be signed in to change notification settings - Fork 1
/
SVTools.py
165 lines (146 loc) · 5.84 KB
/
SVTools.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
class SVariant:
"""Class representing structural variant."""
def __init__(self, tool, line=None, chrom=None, pos=None, id=None, ref=None, end=None, gt=None, svlen=None, svtype=None, cipos1=None, cipos2=None, ciend1=None, ciend2=None, algorithms=None):
self.tool = tool
if(line is not None):
self.parse_line(line)
else:
self.chrom = chrom
self.pos = pos
self.end = end
self.gt = gt
self.id = id
self.ref = ref
self.svlen = svlen
self.svtype = svtype
self.cipos1 = cipos1
self.cipos2 = cipos2
self.ciend1 = ciend1
self.ciend2 = ciend2
self.used = False
self.algorithms = algorithms
def printVcfLine(self):
"""Creates a line for the entry in VCF file for particular SV.
Returns:
str: Line entry for VCF file.
"""
sv_len = self.svlen
end = self.end
if(self.svtype == "INS" or self.svtype == "DUP"):
sv_len = abs(sv_len)
if(self.svtype == "INS"):
end = self.pos
return '\t'.join((self.chrom, str(self.pos), self.id, self.ref, "<"+self.svtype+">",
".", "PASS", "END="+str(end)+";SVLEN="+str(sv_len)+";SVTYPE="+self.svtype+";ALGORITHM="+self.algorithms+";CIPOS="+str(self.cipos1)+","+str(self.cipos2)+";CIEND="+str(self.ciend1)+","+str(self.ciend2), "GT", self.gt, "\n"))
def parse_line(self, line):
"""Parses a line from VCF file, and uses that information for the SVariant initialisation.
Args:
line (str): Line from the VCF file.
"""
values = line.split("\t")
self.chrom = values[0]
self.pos = int(values[1])
info = values[7].split(";")
self.gt = values[9]
self.ref = values[3]
self.end = int(info[0].split("=")[1])
self.svlen = info[1].split("=")[1]
if(self.svlen == "."):
self.svlen = self.end-self.pos
self.svlen = int(self.svlen)
self.svtype = self.parse_type(info[2].split("=")[1])
if(self.svtype == "INS"):
self.end = self.pos+abs(self.svlen)
cipos = info[3].split("=")[1]
ciend = info[4].split("=")[1]
if(cipos == "."):
cipos = "-10,10" # maybe other values? 0s?
if(ciend == "."):
ciend = "-10,10" # maybe other values? 0s?
cipos = cipos.split(",")
ciend = ciend.split(",")
if(cipos[0] == "."):
cipos[0] = "-10"
if(cipos[1] == "."):
cipos[1] = "10"
if(ciend[0] == "."):
ciend[0] = "-10"
if(ciend[1] == "."):
ciend[1] = "10"
self.cipos1 = int(cipos[0])
self.cipos2 = int(cipos[1])
self.ciend1 = int(ciend[0])
self.ciend2 = int(ciend[1])
self.used = False
def parse_type(self, svtype):
"""Parses type of the SV.
Args:
svtype (str): Type from the INFO field.
Returns:
_type_: Uniform type of SV.
"""
if "del" in svtype.casefold():
return "DEL"
if "inv" in svtype.casefold():
return "INV"
if "ins" in svtype.casefold():
return "INS"
if "dup" in svtype.casefold():
return "DUP"
if "tra" in svtype.casefold():
return "TRA"
if "cnv" in svtype.casefold():
return "CNV"
return "UNK"
def print_sv(self):
"""Print the SV in the console. Used mostly for debugging."""
print(self.svtype + ": " + self.chrom + " " + str(self.pos) + "(" + str(self.cipos1) +", " + str(self.cipos2) + ")" + " - " + str(self.end) + "(" + str(self.cipos1) +", " + str(self.cipos2) + ")" + " LEN: " + str(self.svlen) + " GT: " + self.gt)
def checkOverlap(self, sv2):
"""Checks overlap between SVariants.
Args:
sv2 (SVariant): Variant to overlap.
Returns:
bool: Information whether the variants overlap or not.
"""
if(self.chrom != sv2.chrom):
return False
# bear in mind that cipos first coord is negative, hence just addition (example cipos=-10,10)
minPos1 = self.pos+self.cipos1
maxPos1 = self.pos+self.cipos2
minPos2 = sv2.pos+sv2.cipos1
maxPos2 = sv2.pos+sv2.cipos2
minEnd1 = self.end+self.ciend1
maxEnd1 = self.end+self.ciend2
minEnd2 = sv2.end+self.ciend1
maxEnd2 = sv2.end+self.ciend2
max_between = 100
if(self.svtype == "INS"):
if(abs(self.pos-sv2.pos) < max_between and abs(self.svlen-sv2.svlen) < max_between):
return True
else:
if(max(minPos1, minPos2)-max_between <= min(maxPos1, maxPos2)):
if(max(minEnd1, minEnd2)-max_between <= min(maxEnd1, maxEnd2)):
return True
return False
class SVTool:
"""Class for storing the SV callers."""
max_conf = 200 # max confidence interval length
"""Maximum confidence interval."""
def __init__(self, filename):
self.tool = filename.split("/")[-1].split(".")[0]
self.parse_file(filename)
def parse_file(self, filename):
"""Function for parsing the VCF file.
Args:
filename (str): Name of the VCF file for particular tool.
"""
self.sv_list = list()
with open(filename) as file:
for line in file:
if not(line.startswith('#')):
sv = SVariant(self.tool, line)
if(abs(sv.ciend2-sv.ciend1) > self.max_conf or abs(sv.cipos2-sv.cipos1) > self.max_conf):
continue
#print(self.tool + " | ", end = '')
#sv.print_sv()
self.sv_list.append(sv)