-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixrcorrector.py
112 lines (84 loc) · 3.9 KB
/
fixrcorrector.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
#!/usr/bin/env python
'''
author: adam h freedman
afreedman405 at gmail.com
data: Fri Aug 26 10:55:18 EDT 2016
This script takes as an input Rcorrector error corrected Illumina paired-reads
in fastq format and:
1. Removes any reads that Rcorrector indentifes as containing an error,
but can't be corrected, typically low complexity sequences. For these,
the header contains 'unfixable'.
2. Strips the ' cor' from headers of reads that Rcorrector fixed to avoid
issues created by certain header formats for downstream tools.
3. Write a log with counts of (a) read pairs that were removed because at least one end
was unfixable, (b) corrected left and right reads, (c) total number of
read pairs containing at least one corrected read.
Currently, this script only handles paired-end data, and handle either unzipped
or gzipped files on the fly, so long as the gzipped files end with 'gz'.
########
edited by: Tauana Cunha on Sun Feb 05, 2017 - http://github.com/tauanajc
4. Strips the ' l:INT m:INT h:INT' added to all headers by RCorrector.
Usage:
python fixrcorrector.py -o <prefixOutput> -1 *R1.cor.fq.gz -2 *R2.cor.fq.gz
'''
import sys
import gzip
from itertools import izip,izip_longest
import argparse
import re
from os.path import basename
def get_input_streams(r1file,r2file):
if r1file[-2:]=='gz':
r1handle=gzip.open(r1file,'rb')
r2handle=gzip.open(r2file,'rb')
else:
r1handle=open(r1file,'r')
r2handle=open(r2file,'r')
return r1handle,r2handle
def grouper(iterable, n, fillvalue=None):
"Collect data into fixed-length chunks or blocks"
# grouper('ABCDEFG', 3, 'x') --> ABC DEF Gxx
args = [iter(iterable)] * n
return izip_longest(fillvalue=fillvalue, *args)
if __name__=="__main__":
parser = argparse.ArgumentParser(description="options for filtering and logging rCorrector fastq outputs")
parser.add_argument('-1','--left_reads', required=True, dest='leftreads',type=str,help='R1 fastq file')
parser.add_argument('-2','--right_reads', required=True, dest='rightreads',type=str,help='R2 fastq file')
parser.add_argument('-o','--out_prefix', default='rcorrected', dest='outprefix',type=str,help="prefix for filtered fastq output")
opts = parser.parse_args()
r1out=open(opts.outprefix+'_'+basename(opts.leftreads).replace('.gz',''),'w')
r2out=open(opts.outprefix+'_'+basename(opts.rightreads).replace('.gz','') ,'w')
r1_cor_count=0
r2_cor_count=0
pair_cor_count=0
unfix_count=0
r1_stream,r2_stream=get_input_streams(opts.leftreads,opts.rightreads)
with r1_stream as f1, r2_stream as f2:
R1=grouper(f1,4)
R2=grouper(f2,4)
counter=0
for entry in R1:
counter+=1
if counter%1000000==0:
print "%s reads processed" % counter
head1,seq1,placeholder1,qual1=[i.strip() for i in entry]
head2,seq2,placeholder2,qual2=[j.strip() for j in R2.next()]
if 'unfixable' in head1 or 'unfixable' in head2:
unfix_count+=1
else:
if 'cor' in head1 or 'cor' in head2:
pair_cor_count+=1
if 'cor' in head1:
r1_cor_count+=1
if 'cor' in head2:
r2_cor_count+=1
head1=re.sub(r' l:\d+ m:\d+ h:\d+( cor)*','',head1)
head2=re.sub(r' l:\d+ m:\d+ h:\d+( cor)*','',head2)
r1out.write('%s\n' % '\n'.join([head1,seq1,placeholder1,qual1]))
r2out.write('%s\n' % '\n'.join([head2,seq2,placeholder2,qual2]))
unfix_log=open('rmunfixable.log','w')
unfix_log.write('Total initial read pairs:%s\nRemoved pairs:%s\n' \
'Retained read pairs:%s\nR1 corrected:%s\nR2 corrected:%s\nPairs corrected (R1and/orR2):%s\n' \
% (counter,unfix_count,counter-unfix_count,r1_cor_count,r2_cor_count,pair_cor_count))
r1out.close()
r2out.close()