-
Notifications
You must be signed in to change notification settings - Fork 26
/
bismark_mapping_report2tab.py
executable file
·424 lines (379 loc) · 16.4 KB
/
bismark_mapping_report2tab.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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
#!/usr/bin/env python
import argparse
import sys
import os
import re
import inspect
import traceback
parser = argparse.ArgumentParser(description= """
DESCRIPTION
Convert the Bismark mapping report to tabular format, tab separated, suitable
for import to spreadsheet or database.
Currently tested on (some) reports from bismark v0.7.4 and v0.7.6 PE and SE.
EXAMPLE
bismark_mapping_report2tab.py bis_map_rep.txt bis_map_rep2.txt
## Convert a bunch of reports read by stdin, add header line
ls *mapping_report.txt | bismark_mapping_report2tab.py --first_header -
## For on-screen ease of reading use --columns:
ls *mapping_report.txt | bismark_mapping_report2tab.py --columns -
TODO:
""", formatter_class= argparse.RawTextHelpFormatter)
parser.add_argument('infile',
nargs= '+',
help='''One or more reports to parse. Use - to read the list of files from stdin
''')
parser.add_argument('--columns',
action= 'store_true',
help='''Print report as two columns: Headers, Values
''')
parser.add_argument('--first_header',
action= 'store_true',
help='''The first line to be printed out is the header.
''')
args = parser.parse_args()
# ------------------------------------------------------------------------------
# The functions get_... read the report and return the value for the table header
# following get_ (e.g. get_bismark_report_for() returns the value for bismark_report_for)
# ARG report_list is the report as list as produced by (no leading and trailing blanks, no empty lines):
# report_list= open(bismark_report).readlines()
# report_list= [x.strip() for x in report_list if not x.strip() == '']
# Return a tuple as: (header: value) e.g. ('version', 'v0.7.6')
def get_bismark_report_for(report_list):
tag= 'Bismark report for: '
line= [x for x in report_list if x.startswith(tag)]
if len(line) > 1:
sys.exit('%s: More than one line found' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
line= re.sub('( \(version\: ).*\)$', '', line)
line= line.split(' and ')
line= [os.path.split(x)[1] for x in line]
if len(line) == 1:
line= line[0]
elif len(line) == 2:
line= ', '.join(line)
else:
sys.exit('%s: Too many items files found: Should be either 1 or 2 for %s' %(inspect.stack()[0][3], line))
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_full_path(report_list):
tag= 'Bismark report for: '
line= [x for x in report_list if x.startswith(tag)]
if len(line) > 1:
sys.exit('%s: More than one line found' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
line= re.sub('( \(version\: ).*\)$', '', line)
line= line.split(' and ')
if len(line) == 1:
line= line[0]
elif len(line) == 2:
line= ', '.join(line)
else:
sys.exit('%s: Too many items files found: Should be either 1 or 2 for %s' %(inspect.stack()[0][3], line))
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_bismark_version(report_list):
tag= 'Bismark report for: '
line= [x for x in report_list if x.startswith(tag)]
if len(line) > 1:
sys.exit('%s: More than one line found' %(inspect.stack()[0][3], ))
line= line[0]
version_starts= len(line) - line[::-1].find(' ')
line= line[version_starts:len(line)-1]
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_ref_genome(report_list):
tag= 'Bowtie was run against the bisulfite genome of '
line= [x for x in report_list if x.startswith(tag)]
if len(line) > 1:
sys.exit('%s: More than one line found' %(inspect.stack()[0][3], ))
line= line[0]
ref_genome= re.sub(tag, '', line)
line= re.sub(' with the specified options: .*', '', ref_genome)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_bowtie_options(report_list):
tag= ' with the specified options: '
line= [x for x in report_list if tag in x]
if len(line) > 1:
sys.exit('%s: More than one line found' %(inspect.stack()[0][3], ))
line= line[0]
line= line[line.find(tag) + len(tag): ]
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_is_directional(report_list):
tag= "Option '--directional' specified: "
line= [x for x in report_list if tag in x]
if len(line) > 1:
sys.exit('%s: More than one line found' %(inspect.stack()[0][3], ))
if len(line) == 1:
return(re.sub('^get_', '', inspect.stack()[0][3]), 'Yes')
else:
return(re.sub('^get_', '', inspect.stack()[0][3]), 'No')
def get_seqs_tot(report_list):
tag= 'Sequence pairs analysed in total:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
tag= 'Sequences analysed in total:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_seqs_alned_uniq(report_list):
tag= 'Number of paired-end alignments with a unique best hit:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
tag= 'Number of alignments with a unique best hit from the different alignments:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_mapping_efficiency(report_list):
tag= 'Mapping efficiency:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line).rstrip('%')
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_seqs_not_alned(report_list):
tag= 'Sequence pairs with no alignments under any condition:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
tag= 'Sequences with no alignments under any condition:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_seqs_not_uniq(report_list):
tag= 'Sequence pairs did not map uniquely:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
tag= 'Sequences did not map uniquely:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_discarded_seqs(report_list):
tag= 'Sequence pairs which were discarded because genomic sequence could not be extracted:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
tag= 'Sequences which were discarded because genomic sequence could not be extracted:\t'
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_OT(report_list):
tag= '\t((converted) top strand)'
line= [x for x in report_list if x.endswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
line= line.split('\t')[1]
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_OB(report_list):
tag= '\t((converted) bottom strand)'
line= [x for x in report_list if x.endswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
line= line.split('\t')[1]
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_CTOT(report_list):
tag= '\t(complementary to (converted) top strand)'
line= [x for x in report_list if x.endswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
line= line.split('\t')[1]
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_CTOB(report_list):
tag= '\t(complementary to (converted) bottom strand)'
line= [x for x in report_list if x.endswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
line= line.split('\t')[1]
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_tot_cs(report_list):
tag= "Total number of C's analysed:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_mC_cpg(report_list):
tag= "Total methylated C's in CpG context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_mC_chg(report_list):
tag= "Total methylated C's in CHG context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_mC_chh(report_list):
tag= "Total methylated C's in CHH context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_c2t_cpg(report_list):
tag= "Total C to T conversions in CpG context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_c2t_chg(report_list):
tag= "Total C to T conversions in CHG context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_c2t_chh(report_list):
tag= "Total C to T conversions in CHH context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
sys.exit('%s: Not matching line found!' %(inspect.stack()[0][3], ))
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line)
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_perc_mC_cpg(report_list):
tag= "C methylated in CpG context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
return(re.sub('^get_', '', inspect.stack()[0][3]), 'NA')
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line).rstrip('%')
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_perc_mC_chg(report_list):
tag= "C methylated in CHG context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
return(re.sub('^get_', '', inspect.stack()[0][3]), 'NA')
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line).rstrip('%')
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
def get_perc_mC_chh(report_list):
tag= "C methylated in CHH context:\t"
line= [x for x in report_list if x.startswith(tag)]
if line == []:
return(re.sub('^get_', '', inspect.stack()[0][3]), 'NA')
if len(line) > 1:
sys.exit('%s: More than one line found!' %(inspect.stack()[0][3], ))
line= line[0]
line= re.sub(tag, '', line).rstrip('%')
return(re.sub('^get_', '', inspect.stack()[0][3]), line)
# ------------------------------------------------------------------------------
if args.infile == ['-']:
args.infile= sys.stdin.readlines()
args.infile= [x.strip() for x in args.infile]
data= [] ## Store each report a string here as list
for bismark_report in args.infile:
report_list= open(bismark_report).readlines()
report_list= [x.strip() for x in report_list if not x.strip() == '']
try:
values= [get_bismark_report_for(report_list), ## Each item is tuple (header_name, value)
get_full_path(report_list),
get_bismark_version(report_list),
get_ref_genome(report_list),
get_bowtie_options(report_list),
get_is_directional(report_list),
get_seqs_tot(report_list),
get_seqs_alned_uniq(report_list),
get_mapping_efficiency(report_list),
get_seqs_not_alned(report_list),
get_seqs_not_uniq(report_list),
get_discarded_seqs(report_list),
get_OT(report_list),
get_OB(report_list),
get_CTOT(report_list),
get_CTOB(report_list),
get_tot_cs(report_list),
get_mC_cpg(report_list),
get_mC_chg(report_list),
get_mC_chh(report_list),
get_c2t_cpg(report_list),
get_c2t_chg(report_list),
get_c2t_chh(report_list),
get_perc_mC_cpg(report_list),
get_perc_mC_chg(report_list),
get_perc_mC_chh(report_list),
('report_name', bismark_report)]
except:
stack_trace = traceback.format_exc()
print('\nReport "%s" raised an exception:\n' %(bismark_report))
sys.exit(stack_trace)
data.append(values)
if args.first_header:
header= [x[0] for x in data[0]]
print('\t'.join(header))
for report in data:
if args.columns:
print('-'*60)
for v in report:
print(v[0] + ':\t' + str(v[1]))
else:
print('\t'.join([str(v[1]) for v in report]))
sys.exit()