-
Notifications
You must be signed in to change notification settings - Fork 5
/
Division_analyser.py
338 lines (301 loc) · 10.3 KB
/
Division_analyser.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
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
__author__ = "Bruno Fosso"
__version__ = 2.0
__mail__ = "b.fosso@ibbe.cnr.it"
import getopt
import os
import shlex
import sys
import time
from string import strip
import psutil
try:
import numpy
except:
sys.exit("numpy module not found")
try:
from pysam import Samfile
except:
sys.exit("pysam module not found")
try:
from Bio import SeqIO
from Bio.SeqIO.QualityIO import FastqGeneralIterator
except:
sys.exit("biopython module not found")
def usage():
print ('This script works in three different steps:\n'
'\t(1) it maps the sequencing data against the selected reference division;\n'
'\t(2) it filters the mapping data\n'
'Options:\n'
'\t-i\tpaired-end file list: a line containing the R1, the R2 files tab separeted [MANDATORY]\n'
'\t-d\tDivision of interest. Allowed division are: virus, bacteria, fungi, protist [MANDATORY]\n'
'\t-b\treference path [MANDATORY]\n'
'\t-h\tprint this help.\n'
'Usage:\n'
'\tpython division_analyser -i read_list -d division -b path2bowtie2index\n'
'\n'
)
try:
opts, args = getopt.getopt(sys.argv[1:], "hi:d:b:")
except getopt.GetoptError, err:
print str(err)
usage()
sys.exit()
f_in = ""
division = ""
bowtie_path = ""
if len(opts) != 0:
for o, a in opts:
if o == "-h":
usage()
sys.exit()
elif o == "-i":
f_in = a
elif o == "-d":
division = a.lower()
elif o == "-b":
bowtie_path = a
else:
usage()
sys.exit("Unhandeled option")
else:
usage()
sys.exit()
def option_control(l, m, path):
if l == "":
sys.exit("no read list file")
if os.path.exists(l) is False:
sys.exit("The indicated read list file doesn't exists")
if m == "":
sys.exit("Missing Division choice")
if path == "":
sys.exit("Missing refence path")
def input_data_evaluation(n, c):
# controlliamo che il file r1 esista
input_list = map(strip, n.split(","))
if len(input_list) > 1:
for r1_file in input_list:
if os.path.exists(r1_file) is not True:
print "the indicated %s fastq file doesn't exist" % r1_file
usage()
sys.exit()
else:
try:
count = []
with open(r1_file) as handle:
for title in FastqGeneralIterator(handle):
count.append(title)
if len(count) >= 1:
break
except:
sys.exit("input files are not in fastq format")
else:
if os.path.exists(n) is not True:
print "the indicated %s fastq file doesn't exist" % n
usage()
sys.exit()
input_list = map(strip, c.split(","))
if len(input_list) > 1:
for r2_file in input_list:
if os.path.exists(r2_file) is not True:
print "the indicated %s fastq file doesn't exist" % r2_file
usage()
sys.exit()
else:
try:
count = []
with open(r2_file) as handle:
for title in FastqGeneralIterator(handle):
count.append(title)
if len(count) >= 1:
break
except:
sys.exit("input files are not in fastq format")
else:
if os.path.exists(c) is not True:
print "the indicated %s fastq file doesn't exist" % c
usage()
sys.exit()
def cigar_parsing(q_name, q_len, cigar_data, value, r_name):
import fpformat
mm = 0
i = 0
d = 0
soft = 0
hard = 0
for item in cigar_data:
if item[0] == 0:
mm += item[1]
elif item[0] == 1:
i += item[1]
elif item[0] == 2:
d += item[1]
elif item[0] == 4:
soft += item[1]
elif item[0] == 5:
hard += item[1]
q_len = mm + i + soft + hard
tollerance = int(fpformat.fix(q_len * 0.06, 0))
align_len = mm + i + d
query_aligned_len = float(mm + i)
if value <= tollerance:
if query_aligned_len / q_len >= 0.7:
if align_len != 0 and value >= 0:
identity_percentage = ((align_len - value) / align_len) * 100
if identity_percentage >= 94:
evaluated_data = [q_name, r_name, fpformat.fix(identity_percentage, 2), str(value)]
if align.is_read1:
evaluated_data.append("r1\n")
elif align.is_read2:
evaluated_data.append("r2\n")
return evaluated_data
else:
return None
else:
return None
def return_sam_obj(align_file):
sam_obj = None
if align_file.endswith("bam"):
sam_obj = Samfile(align_file, "rb")
elif align_file.endswith("sam"):
sam_obj = Samfile(align_file)
return sam_obj
option_control(f_in, division, bowtie_path)
script_time = time.strftime("%d/%m/%Y %H:%M:%S", time.localtime(time.time())) # type: str
print "START", script_time
R1 = []
R2 = []
for line in open(f_in):
s = map(strip, line.split("\t"))
R1.append(s[0])
R2.append(s[1])
if len(R1) != len(R2):
print "The read list file contains a number of R1 files different to R2 one"
usage()
R1_string = ""
R2_string = ""
if len(R1) > 1:
R1_string = ",".join(R1)
R2_string = ",".join(R2)
else:
R1_string = R1[0]
R2_string = R2[0]
def key_name(acc):
if len(acc.split("/")) == 2:
parts = acc.split("/")
elif len(acc.split()) == 2:
parts = acc.split()
else:
parts = acc.split()
seq_id = parts[0]
return seq_id
def error_file_check(l):
from string import find
count = 0
for line_dat in open(l):
line_dat = line_dat.strip()
if find(line_dat.lower(), "error") != -1:
count += 1
return count
input_data_evaluation(R1_string, R2_string)
wd = os.getcwd()
if os.path.exists(os.path.join(wd, division)) is False:
os.mkdir(os.path.join(wd, division))
# esecuzione del mapping divisione specifico
print "bowtie on division data"
sam_output = os.path.join(wd, division, "mapping_on_%s.sam" % division)
cmd = shlex.split(
"bowtie2 -q -N1 -k100 -L20 --no-unal -x %s -1 %s -2 %s -S %s -p 20 --mm " % (
bowtie_path, R1_string, R2_string, sam_output))
tmp = open(os.path.join(wd, division, "error.lst"), "w")
p = psutil.Popen(cmd, stderr=tmp)
p.wait()
tmp.close()
# sam conversion to bam
if error_file_check(os.path.join(wd, division, "error.lst")) == 0:
bam_output = os.path.join(wd, division, "mapping_on_%s.bam" % division)
cmd = shlex.split("samtools view -bS %s -o %s" % (sam_output, bam_output))
tmp = open(os.path.join(wd, division, "error.lst"), "w")
p = psutil.Popen(cmd, stderr=tmp)
p.wait()
tmp.close()
else:
print "Errors during the mapping procedure for the %s division" % division
print "please see error.lst file"
sys.exit()
if error_file_check(os.path.join(wd, division, "error.lst")) == 0:
sam = Samfile(bam_output, "rb")
# os.remove(sam_output)
else:
print "Errors happened during the samtools view procedure"
print "BAM conversion was stopped. Please control the error.lst file"
print "SAM will be used to identity significant mapping data. This could require long processing time"
sam = Samfile(sam_output)
division_match = {}
# parsing dei dati ottenuti
print "sam parsing"
script_time = time.strftime("%d/%m/%Y %H:%M:%S", time.localtime(time.time()))
print "START", script_time
pe_data = os.path.join(wd, division, "PE_data")
if os.path.exists(pe_data) is False:
os.mkdir(pe_data)
query2file_name = {}
counter = 1
for align in sam:
if align.tid != -1:
query_name = align.qname # accession della read
query_len = float(align.rlen) # lunghezza delle read in esame
ref_name = sam.getrname(align.tid)
cigar = list(align.cigar)
nm = -1
for coppia in align.tags:
if coppia[0] == "NM":
nm = float(coppia[1])
if nm <= (query_len / 100 * 10):
stringa = cigar_parsing(query_name, query_len, cigar, nm, ref_name)
if stringa is not None:
if query_name in query2file_name.keys():
name = os.path.join(pe_data, query2file_name[query_name])
with open(name, "a") as a:
a.write("\t".join(stringa))
else:
query2file_name[query_name] = str(counter)
counter += 1
name = os.path.join(pe_data, query2file_name[query_name])
a = open(name, "w")
a.write("\t".join(stringa))
a.close()
sam.close()
match_file = open(os.path.join(division, "mapped_on_" + division + "_total.txt"), "w")
print "splitted files analysis"
for name in query2file_name.values():
# print name
name = os.path.join(pe_data, name)
r1_match = {}
r2_match = {}
query_name = None
with open(name) as a:
for line in a:
s = map(strip, line.split("\t"))
query_name, ref_name, paired_perc_id, read = s[0], s[1], float(s[2]), s[4]
if read == "r1":
r1_match.setdefault(ref_name, [])
r1_match[ref_name].append(paired_perc_id)
elif read == "r2":
r2_match.setdefault(ref_name, [])
r2_match[ref_name].append(paired_perc_id)
r1_acc = set(r1_match.keys())
r2_acc = set(r2_match.keys())
common = r1_acc.intersection(r2_acc)
if len(common) > 0 and query_name is not None:
match_list = [query_name]
division_match = {}
for ref in common:
division_match.setdefault(ref, [])
perc_id = numpy.mean([max(r1_match[ref]), max(r2_match[ref])])
if perc_id >= 97:
match_list.append(ref)
if len(match_list) > 1:
print >> match_file, " ".join(match_list)
match_file.close()
script_time = time.strftime("%d/%m/%Y %H:%M:%S", time.localtime(time.time()))
print "END", script_time