-
Notifications
You must be signed in to change notification settings - Fork 2
/
fq2html.py
executable file
·377 lines (323 loc) · 11.6 KB
/
fq2html.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
#!/usr/bin/env python
#
# HTML/LaTeXify HBS-seq fastq files.
#
# Copyright (c) 2017,2018 Graham Gower <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
from __future__ import print_function
import sys
import math
import cgi
try:
range = xrange
except NameError:
pass
def comment2ssqq(label):
tags = {}
for field in label.split():
try:
tag, type, val = field.split(":", 2)
except ValueError:
raise Exception("unknown comment field ``{}''".format(field))
tags[tag] = val
return tags["r1"], tags["r2"], tags["q1"], tags["q2"], tags.get("hp", "")
def parse_fq(filename):
"""
Fastq parser. Doesn't do fasta.
"""
label = None
comment = None
qual = None
if filename.endswith(".gz"):
import gzip
xopen = gzip.open
else:
xopen = open
with xopen(filename) as f:
for lineno, line in enumerate(f):
line = line.rstrip("\r\n")
if len(line) == 0:
continue
state = lineno%4
if state == 0:
assert line[0] == "@", "invalid fastq file"
if label is not None:
yield label, comment, seq, qual
lfields = line.split(None, 1)
label = lfields[0]
if len(lfields) > 1:
comment = lfields[1]
else:
comment = None
elif state == 1:
seq = line
elif state == 3:
qual = line
if label is not None:
yield label, comment, seq, qual
# Inverse poisson CDF, stolen from bwa: bwtaln.c
def bwa_cal_maxdiff(l, err=0.02, thres=0.01, maxlen=1000):
esum = elambda = math.exp(-l * err)
y = 1.0
k = x = 1
while (k < maxlen):
y *= l * err
x *= k
esum += elambda * y / x
if (1.0 - esum < thres):
return k
k += 1
return 2;
def mmfind(needle, haystack, mm_allow=1, start=0, min_matches=-1):
nlen = len(needle)
if min_matches == -1:
min_matches = nlen
for i in range(start, len(haystack)-min_matches):
mm = 0
for h, n in zip(haystack[i:i+nlen], needle):
if h != n:
mm += 1
if mm > mm_allow:
break
if mm <= mm_allow:
return i
return -1
def revcomp(seq):
"""
Reverse complement of sequence @seq.
"""
revmap = {"A":"T", "C":"G", "G":"C", "T":"A", "N":"N"}
return "".join((revmap[s] for s in reversed(seq)))
def parse_args():
import argparse
parser = argparse.ArgumentParser(description="HTML/LaTeXify HBS-seq fastq files")
parser.add_argument("-u", "--unmethylated-hairpin", default=False, action="store_true", help="hairpin is BS-converted prior to sequencing [%(default)s]")
parser.add_argument("-n", "--nseqs", type=int, default=1000, help="only output this many sequences [%(default)s]")
parser.add_argument("-p", "--hairpin", action="append", help="hairpin sequence(s)")
parser.add_argument("--latex", action="store_true", default=False, help="LaTeX output [%(default)s]")
parser.add_argument("-i", "--interleaved", action="store_true", default=False, help="R1/R2 are interleaved in one fastq")
parser.add_argument("-o", "--ori", help="HBS-tools *.ori fastq")
parser.add_argument("-m", "--adapter-matchlen", type=int, default=11, help="min number of bases to match hairpin/adapter at end of read")
parser.add_argument("fq1", metavar="f1.fq", help="fastq r1 (or folded.fq if no r2.fq and no --interleaved)")
parser.add_argument("fq2", metavar="f2.fq", help="fastq r2", nargs='?', default=None)
args = parser.parse_args()
if args.hairpin is None:
args.hairpin = ["ACGCCGGCGGCAAGTGAAGCCGCCGGCGT",
"ACGCCGGCGGCAAGTAAGCCGCCGGCGT",
"ACGCCGGCGGCAAGTAGCCGCCGGCGT",
"ACGCCGGCGGCAATGAAGCCGCCGGCGT",
"ACGCCGGCGGCATGAAGCCGCCGGCGT"]
if args.unmethylated_hairpin:
args.hairpin = [h.replace("C", "T") for h in args.hairpin]
args.rhairpin = [revcomp(h) for h in args.hairpin]
return args
if __name__ == "__main__":
args = parse_args()
p5 = "AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA"
p7 = "AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC"
#print("using hairpins:", args.hairpin, args.rhairpin, sep="\n", file=sys.stderr)
yy_maxdiff = bwa_cal_maxdiff(len(p5))
hp_maxdiff = [bwa_cal_maxdiff(len(s)) for s in args.hairpin]
#print(yy_maxdiff, hp_maxdiff, file=sys.stderr)
if args.latex:
print("""
\\documentclass[a4paper,10pt]{article}
\\usepackage[landscape,margin=5mm]{geometry}
\\usepackage{xcolor}
\\definecolor{bs}{RGB}{0, 0, 255} % blue
\\definecolor{nobs}{RGB}{255, 0, 0} % red
\\definecolor{mismatch}{RGB}{255, 0, 255} % magenta
\\definecolor{hairpin}{RGB}{255, 255, 0} % yellow
\\definecolor{yadapter}{RGB}{0, 255, 255} % cyan
\\setlength{\parindent}{0pt}
\\begin{document}
""")
def f(s, cls):
if cls is None:
return s
elif cls in ("hairpin", "yadapter"):
# set as highlight colour
return "{{\\begingroup\\setlength{{\\fboxsep}}{{0pt}}\\colorbox{{{}}}{{{}\\/}}\\endgroup}}".format(cls, s)
else:
return "{{\\color{{{}}}{}}}".format(cls, s)
else:
print("""
<!DOCTYPE html>
<html>
<head>
<style>
.bs {color:blue}
.nobs {color:red}
.mismatch {color:magenta}
.hairpin {background-color:yellow}
.yadapter {background-color:cyan}
</style>
</head>
<body>
<h2>
""")
def f(s, cls):
if cls is None:
return s
else:
return "<font class={}>{}</font>".format(cls, s)
def g(slist):
sl = []
out = []
last = None
for s, cls in slist:
if cls != last and len(sl) != 0:
out.append(f("".join(sl), last))
sl = []
last = cls
sl.append(s)
if len(sl) != 0:
out.append(f("".join(sl), last))
return "".join(out)
ss = qq = None
fq1 = parse_fq(args.fq1)
fq2 = None
if args.interleaved:
fq2 = fq1
elif args.fq2:
fq2 = parse_fq(args.fq2)
labelori = ssori = qqori = None
fqori = None
if args.ori:
fqori = parse_fq(args.ori)
try:
labelori, _, ssori, qqori = next(fqori)
except StopIteration:
labelori = ssori = qqori = None
seqno = 0
while True:
seqno += 1
if fq2 is None:
# folded reads
try:
label, comment, ss, qq = next(fq1)
except StopIteration:
break
ss1, ss2, qq1, qq2, hp = comment2ssqq(comment)
hlen = len(hp)
hpi = rhpi = len(ss)
p5i = p7i = 2*len(ss)+hlen
else:
# unfolded paired-end reads
try:
label1, comment1, ss1, qq1 = next(fq1)
label2, comment2, ss2, qq2 = next(fq2)
except StopIteration:
break
if label1[-2:] in ("/1", ".1"):
label1 = label1[:-2]
label2 = label2[:-2]
if label1 != label2:
print("read name mismatch for pair {}: {} and {}".format(seqno, label1, label2), file=sys.stderr)
exit(1)
label = label1
hpi = rhpi = -1
hp = ""
# look for a hairpin
for i, (h,rh) in enumerate(zip(args.hairpin, args.rhairpin)):
hpi = mmfind(h, ss1, hp_maxdiff[i], min_matches=args.adapter_matchlen)
rhpi = mmfind(rh, ss2, hp_maxdiff[i], min_matches=args.adapter_matchlen)
#print(label, h, hpi, file=sys.stderr)
if hpi != -1:
hp = h
break
if rhpi != -1:
hp = h
break
hlen = len(hp)
if hpi != -1:
p7i = mmfind(p7, ss1, yy_maxdiff, hpi+hlen, min_matches=args.adapter_matchlen)
else:
p7i = mmfind(p7, ss1, yy_maxdiff, min_matches=args.adapter_matchlen)
if rhpi != -1:
p5i = mmfind(p5, ss2, yy_maxdiff, rhpi+hlen, min_matches=args.adapter_matchlen)
else:
p5i = mmfind(p5, ss2, yy_maxdiff, min_matches=args.adapter_matchlen)
if fqori:
ss = qq = None
if labelori==label:
ss = ssori
qq = qqori
try:
labelori, _, ssori, qqori = next(fqori)
except StopIteration:
labelori = ssori = qqori = None
if seqno > args.nseqs:
break
s1_list = []
s2_list = []
if args.latex:
print("\\begin{samepage}\n{\\tt")
else:
print("<p><tt>")
for i,(s1,s2,q1,q2) in enumerate(zip(ss1,ss2,qq1,qq2)):
s1 = s1.upper()
s2 = s2.upper()
q1 = ord(q1)-33
q2 = ord(q2)-33
s1_cls = s2_cls = None
if s1 == s2:
if s1 == 'C' or s1 == 'G':
s1_cls = s2_cls = "nobs"
elif (s1,s2) in [('T','C'), ('G','A')]:
s1_cls = s2_cls = "bs"
else:
s1_cls = s2_cls = "mismatch"
if hpi != -1 and i>=hpi and i<hpi+hlen:
s1_cls = "hairpin"
if rhpi != -1 and i>=rhpi and i<rhpi+hlen:
s2_cls = "hairpin"
if p7i != -1 and i>=p7i:
s1_cls = "yadapter"
if p5i != -1 and i>=p5i:
s2_cls = "yadapter"
if q1 <= 20:
if args.latex:
s1 = "{{\\underline{{{}}}\\/}}".format(s1)
else:
s1 = "<u>{}</u>".format(s1)
if q2 <= 20:
if args.latex:
s2 = "{{\\underline{{{}}}\\/}}".format(s2)
else:
s2 = "<u>{}</u>".format(s2)
s1_list.append((s1, s1_cls))
s2_list.append((s2, s2_cls))
if args.latex:
print("\\verb!", label, "!", "\\\\", sep="")
print("R1", g(s1_list), "\\\\")
if ss is None:
print("R2", g(s2_list))
else:
print("R2", g(s2_list), "\\\\")
print("FS ", ss, "\\\\")
print("FQ \\verb|", qq, "|", sep="")
print("}\\vskip\\baselineskip \\end{samepage}\n")
else:
print(label, "</br>")
print("R1", g(s1_list), "</br>")
print("R2", g(s2_list), "</br>")
if ss is not None:
print("FS ", ss, "</br>")
print("FQ ", cgi.escape(qq))
print("</tt></p>")
if args.latex:
print("\n\\end{document}")
else:
print("</h2></html></body>")