-
Notifications
You must be signed in to change notification settings - Fork 16
/
C3POa.py
280 lines (254 loc) · 11.3 KB
/
C3POa.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
#!/usr/bin/env python3
# Roger Volden
import os
import sys
import numpy as np
import argparse
import multiprocessing as mp
import mappy as mm
from conk import conk
from tqdm import tqdm
import gc
import gzip
import shutil
from glob import glob
PATH = '/'.join(os.path.realpath(__file__).split('/')[:-1]) + '/bin/'
sys.path.append(os.path.abspath(PATH))
from preprocess import preprocess
from call_peaks import call_peaks
from determine_consensus import determine_consensus
VERSION = 'v2.2.3'
def parse_args():
'''Parses arguments.'''
parser = argparse.ArgumentParser(description='Makes consensus sequences from R2C2 reads.',
add_help=True,
prefix_chars='-')
parser.add_argument('--reads', '-r', type=str, action='store',
help='FASTQ file that contains the long R2C2 reads.')
parser.add_argument('--splint_file', '-s', type=str, action='store',
help='Path to the splint FASTA file.')
parser.add_argument('--out_path', '-o', type=str, action='store', default=os.getcwd(),
help='''Directory where all the files will end up.
Defaults to your current directory.''')
parser.add_argument('--config', '-c', type=str, action='store', default='',
help='''If you want to use a config file to specify paths to
programs, specify them here. Use for racon and blat
if they are not in your path.''')
parser.add_argument('--lencutoff', '-l', type=int, action='store', default=1000,
help='''Sets the length cutoff for your raw sequences. Anything
shorter than the cutoff will be excluded. Defaults to 1000.''')
parser.add_argument('--mdistcutoff', '-d', type=int, action='store', default=500,
help='''Sets the median distance cutoff for consensus sequences.
Anything shorter will be excluded. Defaults to 500.''')
parser.add_argument('--zero', '-z', action='store_false', default=True,
help='Use to exclude zero repeat reads. Defaults to True (includes zero repeats).')
parser.add_argument('--numThreads', '-n', type=int, default=1,
help='Number of threads to use during multiprocessing. Defaults to 1.')
parser.add_argument('--groupSize', '-g', type=int, default=1000,
help='Number of reads processed by each thread in each iteration. Defaults to 1000.')
parser.add_argument('--blatThreads', '-b', action='store_true', default=False,
help='''Use to chunk blat across the number of threads instead of by groupSize (faster).''')
parser.add_argument('--compress_output', '-co', action='store_true', default=False,
help='Use to compress (gzip) both the consensus fasta and subread fastq output files.')
parser.add_argument('--version', '-v', action='version', version=VERSION, help='Prints the C3POa version.')
if len(sys.argv) == 1:
parser.print_help()
sys.exit(0)
return parser.parse_args()
def configReader(path, configIn):
progs = {}
with open(configIn) as f:
for line in f:
if line.startswith('#') or not line.rstrip().split():
continue
line = line.rstrip().split('\t')
progs[line[0]] = line[1]
possible = set(['racon', 'blat'])
inConfig = set()
for key in progs.keys():
inConfig.add(key)
# check for missing programs
# if missing, default to path
for missing in possible - inConfig:
path = missing
progs[missing] = path
sys.stderr.write('Using ' + str(missing)
+ ' from your path, not the config file.\n')
return progs
def cat_files(path, pattern, output, description, compress):
'''Use glob to get around bash argument list limitations'''
if compress:
output += '.gz'
final_fh = gzip.open(output, 'wb+')
else:
final_fh = open(output, 'w+')
for f in tqdm(glob(path + pattern), desc=description):
with open(f) as fh:
for line in fh:
if compress:
line = line.encode()
final_fh.write(line)
final_fh.close()
def remove_files(path, pattern):
'''Use glob to get around bash argument list limitations'''
for d in tqdm(glob(path + pattern), desc='Removing files'):
shutil.rmtree(d)
def rounding(x, base):
'''Rounds to the nearest base, we use 50'''
return int(base * round(float(x) / base))
def analyze_reads(args, reads, splint_dict, adapter_dict, adapter_set, iteration, racon):
penalty, iters, window, order = 20, 3, 41, 2
for read in reads:
name, seq, qual = read[0], read[1], read[2]
seq_len = len(seq)
if not adapter_dict.get(name):
continue
strand = adapter_dict[name][1]
if strand == '-':
# use reverse complement of the splint
splint = splint_dict[adapter_dict[name][0]][1]
else:
splint = splint_dict[adapter_dict[name][0]][0]
scores = conk.conk(splint, seq, penalty)
peaks = call_peaks(scores, args.mdistcutoff, iters, window, order)
if not list(peaks):
continue
peaks = list(peaks + len(splint) // 2)
for i in range(len(peaks) - 1, -1, -1):
if peaks[i] >= seq_len:
del peaks[i]
if not peaks:
continue
# check for outliers in subread length
subreads, qual_subreads, dangling_subreads, qual_dangling_subreads = [], [], [], []
if len(peaks) > 1:
subread_lens = np.diff(peaks)
subread_lens = [rounding(x, 50) for x in subread_lens]
median_subread_len = np.median(subread_lens)
for i in range(len(subread_lens)):
bounds = [peaks[i], peaks[i+1]]
if median_subread_len*0.8 <= subread_lens[i] <= median_subread_len*1.2:
subreads.append(seq[bounds[0]:bounds[1]])
qual_subreads.append(qual[bounds[0]:bounds[1]])
if peaks[0] > 100:
dangling_subreads.append(seq[:peaks[0]])
qual_dangling_subreads.append(qual[:peaks[0]])
if seq_len - peaks[-1] > 100:
dangling_subreads.append(seq[peaks[-1]:])
qual_dangling_subreads.append(qual[peaks[-1]:])
else:
dangling_subreads.append(seq[:peaks[0]])
qual_dangling_subreads.append(qual[:peaks[0]])
dangling_subreads.append(seq[peaks[0]:])
qual_dangling_subreads.append(qual[peaks[0]:])
tmp_dir = args.out_path + adapter_dict[name][0] + '/tmp' + str(iteration) + '/'
if not os.path.isdir(tmp_dir):
os.mkdir(tmp_dir)
subread_file = tmp_dir + 'subreads.fastq'
consensus, repeats = determine_consensus(
args, read, subreads, qual_subreads, dangling_subreads, qual_dangling_subreads,
racon, tmp_dir, subread_file
)
if consensus:
avg_qual = round(sum([ord(x)-33 for x in qual])/seq_len, 2)
cons_len = len(consensus)
final_out = open(tmp_dir + '/R2C2_Consensus.fasta', 'a+')
print('>' + name + '_' + '_'.join([str(x) for x in [avg_qual, seq_len, repeats, cons_len]]), file=final_out)
print(consensus, file=final_out)
final_out.close()
def main(args):
if not args.out_path.endswith('/'):
args.out_path += '/'
if not os.path.exists(args.out_path):
os.mkdir(args.out_path)
log_file = open(args.out_path + 'c3poa.log', 'w+')
if args.config:
progs = configReader(args.out_path, args.config)
racon = progs['racon']
blat = progs['blat']
else:
racon = 'racon'
blat = 'blat'
tmp_dir = args.out_path + 'tmp/'
if not os.path.isdir(tmp_dir):
os.mkdir(tmp_dir)
# read in the file and preprocess
read_list, total_reads = [], 0
short_reads = 0
tmp_fasta = tmp_dir + 'R2C2_temp_for_BLAT.fasta'
align_psl = tmp_dir + 'splint_to_read_alignments.psl'
tmp_adapter_dict = {}
for read in mm.fastx_read(args.reads, read_comment=False):
if len(read[1]) < args.lencutoff:
short_reads += 1
continue
tmp_adapter_dict[read[0]] = [[None, 1, None]] # [adapter, matches, strand]
total_reads += 1
adapter_dict, adapter_set, no_splint = preprocess(blat, args, tmp_dir, tmp_adapter_dict, total_reads)
for adapter in adapter_set:
if not os.path.exists(args.out_path + adapter):
os.mkdir(args.out_path + adapter)
all_reads = total_reads + short_reads
print('C3POa version:', VERSION, file=log_file)
print('Total reads:', all_reads, file=log_file)
print('No splint reads:',
no_splint,
'({:.2f}%)'.format((no_splint/all_reads)*100),
file=log_file)
print('Under len cutoff:',
short_reads,
'({:.2f}%)'.format((short_reads/all_reads)*100),
file=log_file)
print('Total thrown away reads:',
short_reads + no_splint,
'({:.2f}%)'.format(((short_reads + no_splint)/all_reads)*100),
file=log_file)
print('Reads after preprocessing:', all_reads - (short_reads + no_splint), file=log_file)
log_file.close()
splint_dict = {}
for splint in mm.fastx_read(args.splint_file, read_comment=False):
splint_dict[splint[0]] = [splint[1]]
splint_dict[splint[0]].append(mm.revcomp(splint[1]))
pool = mp.Pool(args.numThreads, maxtasksperchild=1)
pbar = tqdm(total=total_reads // args.groupSize + 1, desc='Calling consensi')
iteration, current_num, tmp_reads, target = 1, 0, [], args.groupSize
for read in mm.fastx_read(args.reads, read_comment=False):
if len(read[1]) < args.lencutoff:
continue
tmp_reads.append(read)
current_num += 1
if current_num == target:
pool.apply_async(analyze_reads,
args=(args, tmp_reads, splint_dict, adapter_dict, adapter_set, iteration, racon),
callback=lambda _: pbar.update(1)
)
iteration += 1
target = args.groupSize * iteration
if target >= total_reads:
target = total_reads
tmp_reads = []
gc.collect()
pool.close()
pool.join()
pbar.close()
for adapter in adapter_set:
cat_files(
args.out_path + adapter,
'/tmp*/R2C2_Consensus.fasta',
args.out_path + adapter + '/R2C2_Consensus.fasta',
'Catting consensus reads', compress=args.compress_output
)
cat_files(
args.out_path + adapter,
'/tmp*/subreads.fastq',
args.out_path + adapter + '/R2C2_Subreads.fastq',
'Catting subreads', compress=args.compress_output
)
remove_files(args.out_path + adapter, '/tmp*')
if __name__ == '__main__':
args = parse_args()
if not args.reads or not args.splint_file:
print('Reads (--reads/-r) and splint (--splint_file/-s) are required', file=sys.stderr)
sys.exit(1)
mp.set_start_method("spawn")
main(args)