forked from cdeitrick/LabScripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBreseqCat3.py
353 lines (282 loc) · 11.7 KB
/
BreseqCat3.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
#! /usr/bin/python
# -*- coding: utf-8 -*-
from openpyxl import load_workbook, styles
from collections import OrderedDict
from bs4 import BeautifulSoup
import pandas
from unidecode import unidecode
import pathlib
from typing import *
import argparse
import os
from functools import partial
print = partial(print, flush = True)
Table = List[Dict[str, str]]
# TODO expand user dolder with ~ for the -d flag
DEBUG = os.name == 'nt'
if not DEBUG:
parser = argparse.ArgumentParser(
description = "This is a Breseq Mutation Parser. It Currently only SNPs, Missing Coverage, "
"and New Junction Evidence (wont output junction repeats). "
"In order to run this program please put all the Breseq directores into a master directory and then "
"parse that directory with the program's -d flag.")
parser.add_argument(
'-d', '--directory',
action = "store",
help = "Use this flag to indicate the index file you would like to parse",
dest = "DirName"
)
parser.add_argument(
'-f', '--format',
action = "store",
help = "format of the output file.",
dest = 'filetype',
choices = ['csv', 'tsv', 'xlsx'],
default = 'xlsx'
)
parser.add_argument(
'-o', '--output',
action = "store",
help = "Name of the output file(s) or folder. Defaults to './breseq_output'",
default = 'breseq_output',
dest = 'filename'
)
args = parser.parse_args()
else:
class Parser:
DirName: str
filetype: str
prefix: str
def __init__(self, a, b, c):
self.DirName = a
self.filetype = b
self.prefix = c
test_folder = r"C:\Users\Progi\Documents\Projects\cooperlab\breseq_output"
args = Parser(test_folder, 'xlsx', 'test_output')
def toNumber(string: str) -> int:
""" Converts a string to a number"""
try:
string = int(string.replace(',', ''))
except ValueError:
pass
return string
class Breseq:
def __init__(self, options):
self.options = options
self.data_folder = pathlib.Path(self.options.DirName)
self.snp_table = list()
self.coverage_table = list()
self.junction_table = list()
for folder in self.data_folder.iterdir():
if not folder.is_dir(): continue
print("parsing ", folder)
snp_table, coverage_table, junction_table = self.parseOutputFolder(folder)
self.snp_table += snp_table
self.coverage_table += coverage_table
self.junction_table += junction_table
self.snp_table = pandas.DataFrame(self.snp_table)
self.coverage_table = pandas.DataFrame(self.coverage_table)
self.junction_table = pandas.DataFrame(self.junction_table)
self.generateComparisonTable(self.snp_table)
def parseOutputFolder(self, folder: pathlib.Path) -> Tuple[Table, Table, Table]:
index_file = folder / "output" / "index.html"
if not index_file.exists():
print("\tThe index.html file is missing. Ignoring folder.")
return [], [], []
sample_name = folder.name
snp_headers, snp_table, coverage_soup, junction_soup = self._parseIndexFile(index_file)
parsed_snp_table = self._parsePredictedMutations(sample_name, snp_headers, snp_table)
coverage_table = self._parseCoverage(sample_name, coverage_soup)
junction_table = self._parseJunctions(sample_name, junction_soup)
return parsed_snp_table, coverage_table, junction_table
@staticmethod
def _extractIndexFileTables(soup: BeautifulSoup) -> Tuple[List[str], BeautifulSoup, BeautifulSoup]:
alph_soup = str(soup)
# print(alph_soup)
begin_snp_header_string = r'<th>evidence</th>'
# begin_snp_header_string = r'Predicted mutations</th></tr><tr>'
end_snp_header_string = '<!-- Item Lines -->'
begin_snp_header = alph_soup.find(begin_snp_header_string)
end_snp_header = alph_soup.find(end_snp_header_string)
snp_header_full = alph_soup[begin_snp_header:end_snp_header]
snp_header = snp_header_full[end_snp_header:]
snp_header_soup = BeautifulSoup(snp_header_full, 'lxml')
snp_header_soup = [i.text for i in snp_header_soup.find_all('th')]
if DEBUG and False:
print("Begin snp header index: ", begin_snp_header)
print("End snp header index: ", end_snp_header)
print()
print("_extractIndexFilesTables")
print("Full Header: ", type(snp_header_full))
print(snp_header_full)
print()
print("Short Header:", type(snp_header))
print(len(snp_header))
print(snp_header)
print()
print("BS4 Header:")
print(snp_header_soup)
begin_umc = alph_soup.find(
'<tr><th align="left" class="missing_coverage_header_row" colspan="11">Unassigned missing coverage evidence</th></tr>')
end_umc = alph_soup.find(
'<th align="left" class="new_junction_header_row" colspan="12">Unassigned new junction evidence</th>')
coverage_string = alph_soup[begin_umc:end_umc]
junction_string = alph_soup[end_umc:]
coverage_soup = BeautifulSoup(coverage_string, 'lxml')
junction_soup = BeautifulSoup(junction_string, 'lxml')
return snp_header_soup, coverage_soup, junction_soup
def _parseIndexFile(self, filename: pathlib.Path):
with open(filename, 'r') as file1:
contents = file1.read()
soup = BeautifulSoup(contents, 'lxml')
normal_table = soup.find_all(attrs = {'class': 'normal_table_row'})
poly_table = soup.find_all(attrs = {'class': 'polymorphism_table_row'})
if len(normal_table):
snp_table = normal_table
else:
snp_table = poly_table
snp_header_soup, coverage_soup, junction_soup = self._extractIndexFileTables(soup)
return snp_header_soup, snp_table, coverage_soup, junction_soup
@staticmethod
def _parsePredictedMutations(sample_name: str, headers: List[str], rows: List) -> Table:
converted_table = list()
for tag in rows:
values = [v.text for v in tag.find_all('td')]
if len(values) > 1:
row = {k: v for k, v in zip(headers, values)}
row['Sample'] = sample_name
row['position'] = toNumber(row['position'])
converted_table.append(row)
return converted_table
@staticmethod
def _parseCoverage(sample_name: str, coverage: BeautifulSoup) -> Table:
coverage_table = list()
rows = coverage.find_all('tr')
if len(rows) == 0:
print("\tCould not parse the coverage table.")
return coverage_table
column_names = [i.text for i in rows[1].find_all('th')]
for index, tag in enumerate(rows[2:]):
values = tag.find_all('td')
if len(values) > 1:
row = [('Sample', sample_name)] + [(k, v.get_text()) for k, v in zip(column_names, values)]
row = OrderedDict(row)
row['start'] = toNumber(row['start'])
row['end'] = toNumber(row['end'])
row['size'] = toNumber(row['size'])
coverage_table.append(row)
return coverage_table
@staticmethod
def _parseJunctions(sample_name: str, junctions: BeautifulSoup) -> Table:
rows = junctions.find_all('tr')
if len(rows) == 0:
print("\tCould not parse Junctino table.")
return list()
column_names_a = ['0', '1'] + [unidecode(i.get_text()) for i in rows.pop(0).find_all('th')][1:]
column_names_a[4] = '{} ({})'.format(column_names_a[4], 'single')
column_names_b = [i for i in column_names_a if i not in ['reads (cov)', 'score', 'skew', 'freq', '0']]
junction_table = list()
for a_row, b_row in zip(rows[::2], rows[1::2]):
a_values = [unidecode(i.get_text()) for i in a_row.find_all('td')]
b_values = [unidecode(i.get_text()) for i in b_row.find_all('td')]
a_row = {unidecode(k): v for k, v in zip(column_names_a, a_values)}
b_row = {unidecode(k): v for k, v in zip(column_names_b, b_values)}
a_row['Sample'] = sample_name
b_row['Sample'] = sample_name
junction_table.append(a_row)
junction_table.append(b_row)
return junction_table
@staticmethod
def generateComparisonTable(snp_table: pandas.DataFrame) -> Optional[pandas.DataFrame]:
# Sample annotation description evidence gene mutation position seq id
all_samples = set(snp_table['Sample'].values)
columns = [unidecode(i) for i in snp_table.columns.values]
if 'seq id' not in columns:
print("Columns: ", columns)
return None
sequence_group = snp_table.groupby(by = ['seq id', 'position'])
comparison = list()
for element, sequence in sequence_group:
seq_id, position = element
samples = sequence['Sample'].values
char = 'X' if len(samples) == 1 else '.'
comparison_row = {k: char for k in samples}
comparison_row['seq id'] = seq_id
comparison_row['position'] = position
comparison_row['all'] = '.' if len(samples) == len(all_samples) else ''
comparison.append(comparison_row)
comparison_table = pandas.DataFrame(comparison)
return comparison_table
def _formatComparisonWorksheet(self, worksheet):
for character in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ':
for index in range(1, len(self.snp_table)):
cell_index = character + str(index)
cell = worksheet[cell_index]
print(cell)
value = cell.value
if value == '.':
cell.fill = styles.Fill(bgColor = styles.Color('00000000'), fill_type = 'solid')
elif value == 'X':
cell.fill = styles.PatternFill(bgColor = styles.Color('12345678'), fill_type = 'solid')
return worksheet
def save(self, filename = None, filetype = None):
if filetype is None:
filetype = args.filetype
filetype = filetype.lower()
if filename is None:
filename = args.filename
filename = pathlib.Path(filename)
if filename.is_dir():
filename = filename / 'breseq_output'
print("Saving to ", filename)
if filetype == 'xlsx':
self.to_excel(filename)
else:
self.to_csv(filename, filetype)
def to_excel(self, filename):
if isinstance(filename, str):
filename = pathlib.Path(filename)
filename = filename.with_suffix('.xlsx')
writer = pandas.ExcelWriter(filename)
include_index = False
self.snp_table.to_excel(writer, 'snps', index = include_index)
self.coverage_table.to_excel(writer, 'coverage', index = include_index)
self.junction_table.to_excel(writer, 'junctions', index = include_index)
comparison_table = self.generateComparisonTable(self.snp_table)
if comparison_table is not None:
comparison_table.to_excel(writer, 'snp comparison', index = include_index)
writer.close()
wb = load_workbook(filename)
# cws = wb.get_sheet_by_name('snp comparison')
# cws = self._formatComparisonWorksheet(cws)
ws = wb.get_sheet_by_name('junctions')
merge_columns = [
c
for c in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
if ws[c + '1'].value in ['Sample', 0, '0', 'freq', 'product', 'score']
]
for x in range(0, len(self.junction_table), 2):
for column in merge_columns:
cells_to_merge = '{0}{1}:{0}{2}'.format(column, x + 2, x + 3)
ws.merge_cells(cells_to_merge)
wb.save(filename)
def to_csv(self, folder: Union[str, pathlib.Path], filetype):
if isinstance(folder, str):
folder = pathlib.Path(folder)
extension = 'tsv' if filetype == 'tsv' else 'csv'
snp_filename = str(folder.with_name(folder.stem + '.snp.' + extension).absolute())
coverage_filename = str(folder.with_name(folder.stem + '.coverage.' + extension).absolute())
junction_filename = str(folder.with_name(folder.stem + '.junction.' + extension).absolute())
delimiter = '\t' if filetype == 'tsv' else ','
include_index = False
self.snp_table.to_csv(snp_filename, sep = delimiter, index = include_index)
self.coverage_table.to_csv(coverage_filename, sep = delimiter, index = include_index)
self.junction_table.to_csv(junction_filename, sep = delimiter, index = include_index)
if __name__ == "__main__":
data_folder = args.DirName
output_file = pathlib.Path(args.filename)
if not data_folder or not pathlib.Path(data_folder).is_dir():
print("Please Please Enter a valid Directory to parse, try the --help flag if you have questions, exiting!")
exit(1)
obj = Breseq(args)
obj.save(args.filename, args.filetype)