-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMAUIcount.py
More file actions
executable file
·436 lines (352 loc) · 17.5 KB
/
MAUIcount.py
File metadata and controls
executable file
·436 lines (352 loc) · 17.5 KB
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
424
425
426
427
428
429
430
431
432
433
434
435
436
#!/usr/bin/env python3
import os
import subprocess
import datetime
"""
This script reads amplicon sequences from a set of fastq files.
The first UMI_len bases of each read are a random tag (UMI or Unique Molecular Identifier).
The script keeps track of how many times each UMI is used with each unique sequence.
For the set of samples, outputs are files with a list of fasta sequences in descending rank
order of abundance, and corresponding tables with the counts of each sequence in each sample.
Three output sets are produced by default:
"accepted_sequences": the main MAUI-seq output, using secondary sequences to filter out errors
"all_primary_sequences": the same UMI counts before error filtering
"read_sequences": 'conventional' analysis of the sequences, ignoring UMIs
An additional output set can be produced by setting output_types = 4. This has the same
filtering as accepted_sequences, but applied on a per-sample basis, rather than on totals
across all samples. If allele frequencies vary greatly across samples, this would be
preferable in principle, but it is not reliable unless read counts are very high. Otherwise,
it can lead to sequences being stochastically deleted from some samples but not others.
In all cases, the outputs are truncated to discard rare sequences that would have
frequencies below add_limit in the overall set of samples.
Additional output files are summary.txt (various data about the run) and UMI_stats.tab
(information on the distribution of read numbers per UMI that may be useful for optimising
the protocol).
A file MC_parameters.py specifies the files to be analysed and gene-specific parameters.
It should be in the same folder as this script (or another path that will be found).
If there is a file fastq_file_list.txt in the same folder as the data, only the files listed
in this file will be included in the analysis. If this file is not present, it will be
created with a list of all files that have the extension .fastq.
Written by Peter Young. Version 1.01 on 20 January 2020.
"""
start_time = datetime.datetime.now()
script_file = os.path.basename(__file__)
#Parameters that control the stringency of the analysis and the output types
#These default values will be replaced by any listed in MC_parameters.py
read_diff = 2
#Count UMI only if most abundant sequence has at least read_diff more reads than the next
reject_threshold = 0.7
#Reject sequences that occur as second sequences with UMIs at least reject_threshold
#times as often as they occur as the primary sequence
add_limit = 0.001
#sequences are included, in rank order, until the next would add a fraction less than add_limit
#i.e. this discards sequences with an overall relative abundance less than add_limit
output_types = 3
#if set to 4, additional output is produced based on filtering separately for each sample
output_read_counts = False
#If set to true, output the total number of reads contributing to the UMI primary and secondary counts
#Get info on file locations and gene-specific parameters from MC_parameters.py
from MC_parameters import *
#Functions
def find_match(line,dic):
"""
Split a sequence line into UMI and sequence (removing the primers);
then add to a dictionary of all the different UMIs with counts of each of their sequences
Uses global constants UMI_len, f_primer_len, r_primer_len
Calls increment()
"""
UMI = line[0:UMI_len]
sequence = line[(UMI_len + f_primer_len):(len(line) - r_primer_len)]
if UMI in dic:
increment(dic[UMI],sequence,1)
else:
dic[UMI] = {sequence:1}
def increment(dic,key,count):
"""
Increments the total for key in dic by count, or creates key:count if not existing
"""
if key in dic:
dic[key] += count
else:
dic[key] = count
#Initialise lists and dictionaries
sample_tuples = []
all_samples_table = {}
total_counts = {}
total_clean_by_sample_counts = {}
clean_all_samples_table = {}
total_sec_seq_counts = {}
total_cleaned_sec_counts = {}
all_samples_reads = {}
total_reads = {}
raw_read_count = 0
total_pri_reads = {} #NEW
total_sec_reads = {} #NEW
UMI_stat_names = ["all sequences per UMI", "primary sequences per UMI",
"secondary sequences per UMI", "distinct sequences per UMI", "pri - sec difference",
"UMI profile"]
UMI_stats = [{},{},{},{},{},{}] #NEW
#Get a list of the samples to process
#Use the list file if it already exists, or else create one
if not os.path.isfile(working_folder+"fastq_file_list.txt"):
subprocess.call("ls " + working_folder + "*.fastq > " + working_folder +"fastq_file_list.txt", shell=True)
#The sample ID will be the fasta filename up to the first "."
with open(working_folder + "fastq_file_list.txt") as file_list:
for fastq_filename in file_list:
if "/" in fastq_filename:
fastq_filename = fastq_filename[fastq_filename.rindex("/")+1:]
fastq_filepath = working_folder + fastq_filename.rstrip("\n")
sample_ID = fastq_filename[0:fastq_filename.find(".")]
sample_tuples.append((sample_ID,fastq_filepath))
#Process the read data, one sample at a time
for (sample_ID,fastq_filepath) in sample_tuples:
UMI_dict = {}
read_dict = {} #keys will be sequences, items will be number of reads for each sequence in the sample
#Read in a fastq file one sequence record at a time (4 lines) and process the DNA sequence (2nd line) with find_match
#Create UMI_dict with structure {UMI:{sequence:count,...},...}
with open(fastq_filepath) as fastq_file:
ctr = 0
record = []
for next_line in fastq_file:
record.append(next_line.rstrip("\n"))
ctr += 1
if ctr == 4:
raw_read_count +=1
if len(record[1]) == total_len: #Only process sequences that are the correct length
find_match(record[1],UMI_dict)
sequence = record[1][(UMI_len + f_primer_len):(len(record[1]) - r_primer_len)]
increment(read_dict, sequence, 1)
increment(total_reads, sequence, 1)
record = []
ctr = 0
#Extract sequence count data from UMI_dict
sample_counts = {} #keys will be sequences, items will be number of UMIs for each sequence in the sample
sec_seq_counts = {} #keys will be sequences, items will be how often they are second sequence in a UMI
clean_sample_counts = {} #only includes sequences that are below the threshold for second sequence count
for UMI, matches in sorted(UMI_dict.items(), key=lambda item: sum(item[1].values()), reverse=True):
sorted_list = sorted(UMI_dict[UMI].items(), key=lambda item: item[1], reverse=True)
sequence = sorted_list[0] #Choose the most abundant sequence for each UMI
if len(sorted_list) > 1: #There is a second sequence with this UMI
sec_seq = sorted_list[1]
else:
sec_seq = ("null",0)
if sequence[1] - sec_seq[1] >=read_diff:
#Only include sequences that have at least read_diff more reads than the sec_seq
increment(sample_counts, sequence[0], 1)
increment(total_counts, sequence[0], 1)
increment(total_pri_reads, sequence[0], sequence[1]) #NEW
#Count second sequences across all UMIs
if sec_seq[0] != "null":
increment(sec_seq_counts, sec_seq[0], 1)
increment(total_sec_seq_counts, sec_seq[0], 1)
increment(total_sec_reads, sec_seq[0], sec_seq[1]) #NEW
#NEW: Collect reads-per-UMI distribution
increment(UMI_stats[0], sum(UMI_dict[UMI].values()), 1)
increment(UMI_stats[1], sequence[1], 1)
increment(UMI_stats[2], sec_seq[1], 1)
increment(UMI_stats[3], len(UMI_dict[UMI]), 1)
increment(UMI_stats[4], sequence[1] - sec_seq[1], 1)
count_string = ""
for sequence, count in sorted_list:
count_string += str(count) + ","
increment(UMI_stats[5], count_string, 1)
for seq in sample_counts:
seq_count = sample_counts[seq]
if seq in sec_seq_counts:
sec_count = sec_seq_counts[seq]
else: sec_count = 0
if sec_count < seq_count * reject_threshold:
clean_sample_counts[seq] = seq_count
increment(total_clean_by_sample_counts, seq, seq_count)
increment(total_cleaned_sec_counts, seq, sec_count)
all_samples_table[sample_ID] = sample_counts
clean_all_samples_table[sample_ID] = clean_sample_counts
all_samples_reads[sample_ID] = read_dict #Record read data for this sample
#Prepare to output the results
output_folder = working_folder + "MAUIcount_output/"
os.mkdir(output_folder[:-1])
fas_file = {}
table_file = {}
file_names = ["all_primary_sequences","accepted_sequences","read_sequences","accepted_by_sample_sequences"]
for i in range(output_types):
fas_file[i] = open(output_folder + file_names[i] + ".fas", "w")
table_file[i] = open(output_folder + file_names[i] + ".tab", "w")
rank = 0
ranked_sequence_list = []
sequence_list = [[],[],[],[]]
cumultotal = [0,0,0,0]
total_accepted_seqs = 0
total_accepted_counts = 0
reported_UMI_seqs = 0
reported_accepted_seqs = 0
reported_read_seqs = 0
#Write sets of sequences in fasta format
#Headers have raw sequence rank, total counts, total secondary counts
for sequence, seq_count in sorted(total_counts.items(), key=lambda item: item[1], reverse=True):
if sequence in total_sec_seq_counts:
sec_seq_count = total_sec_seq_counts[sequence]
else: sec_seq_count = 0
rank += 1
ranked_sequence_list.append(sequence)
if seq_count > cumultotal[0]*add_limit:
cumultotal[0] += seq_count
sequence_list[0].append(sequence)
reported_UMI_seqs +=1
fas_file[0].write(">seq_%d_%d_%d\n%s\n" % (rank, seq_count, sec_seq_count, sequence))
if sec_seq_count < seq_count*reject_threshold:
total_accepted_seqs += 1
total_accepted_counts += seq_count
if seq_count > cumultotal[1]*add_limit:
cumultotal[1] += seq_count
sequence_list[1].append(sequence)
reported_accepted_seqs +=1
fas_file[1].write(">seq_%d_%d_%d\n%s\n" % (rank, seq_count, sec_seq_count, sequence))
#if required, output a similar file filtered by treating each sample separately
if output_types == 4:
for sequence, seq_count in sorted(total_clean_by_sample_counts.items(), key=lambda item: item[1], reverse=True):
if seq_count > cumultotal[3]*add_limit: #omit sequences with few counts
cumultotal[3] += seq_count
if sequence in total_cleaned_sec_counts:
sec_seq_count = total_cleaned_sec_counts[sequence]
else: sec_seq_count = 0
rank = ranked_sequence_list.index(sequence) + 1
sequence_list[3].append(sequence)
fas_file[3].write(">seq_%d_%d_%d\n%s\n" % (rank, seq_count, sec_seq_count, sequence))
#Raw reads are ranked and named differently (seqr) because not all are in the UMI list
#Headers have raw sequence rank, total counts
rank_r = 0
ranked_sequence_list_r = []
for sequence, seq_count in sorted(total_reads.items(), key=lambda item: item[1], reverse=True):
rank_r +=1
ranked_sequence_list_r.append(sequence)
if seq_count > cumultotal[2]*add_limit:
cumultotal[2] += seq_count
sequence_list[2].append(sequence)
reported_read_seqs +=1
fas_file[2].write(">seqr_%d_%d\n%s\n" % (rank_r, seq_count, sequence))
#Write tables of counts for each sequence in each sample
#Write sequence ranks as column headers
for sequence in sequence_list[0]:
rank = ranked_sequence_list.index(sequence) +1
table_file[0].write("\tseq_%d" % (rank))
table_file[0].write("\n")
for sequence in sequence_list[1]:
rank = ranked_sequence_list.index(sequence) +1
table_file[1].write("\tseq_%d" % (rank))
table_file[1].write("\n")
#Write a row of counts for each sample
for sample_ID in sorted(all_samples_table):
for i in range(2):
table_file[i].write(sample_ID+"\t")
for sequence in ranked_sequence_list:
if sequence in all_samples_table[sample_ID]:
seq_count = all_samples_table[sample_ID][sequence]
else:
seq_count = 0
for i in range(2):
if sequence in sequence_list[i]:
table_file[i].write(str(seq_count)+"\t")
for i in range(2):
table_file[i].write("\n")
#Write total counts for each sequence under corresponding column
for i in range(2):
table_file[i].write("total")
for sequence in sequence_list[i]:
table_file[i].write("\t"+str(total_counts[sequence]))
table_file[i].write("\nseconds")
for sequence in sequence_list[i]:
if sequence in total_sec_seq_counts:
sec_seq_count = total_sec_seq_counts[sequence]
else: sec_seq_count = 0
table_file[i].write("\t"+str(sec_seq_count))
#if required, output pri/sec read counts
if output_read_counts:
table_file[i].write("\n\npri reads")
for sequence in sequence_list[i]:
table_file[i].write("\t"+str(total_pri_reads[sequence]))
table_file[i].write("\nsec reads")
for sequence in sequence_list[i]:
if sequence in total_sec_reads:
sec_reads = total_sec_reads[sequence]
else: sec_reads = 0
table_file[i].write("\t"+str(sec_reads))
#if required, output a similar table filtering each sample separately
if output_types == 4:
for sequence in sequence_list[3]:
rank = ranked_sequence_list.index(sequence) +1
table_file[3].write("\tseq_%d" % (rank))
table_file[3].write("\n")
for sample_ID in sorted(clean_all_samples_table):
table_file[3].write(sample_ID+"\t")
for sequence in sequence_list[3]:
if sequence in clean_all_samples_table[sample_ID]:
seq_count = clean_all_samples_table[sample_ID][sequence]
else:
seq_count = 0
table_file[3].write(str(seq_count)+"\t")
table_file[3].write("\n")
table_file[3].write("total")
for sequence in sequence_list[3]:
table_file[3].write("\t"+str(total_clean_by_sample_counts[sequence]))
table_file[3].write("\nseconds")
for sequence in sequence_list[3]:
if sequence in total_cleaned_sec_counts:
sec_seq_count = total_cleaned_sec_counts[sequence]
else: sec_seq_count = 0
table_file[3].write("\t"+str(sec_seq_count))
#Write a similar table based on reads
#Write sequence ranks as column headers
for sequence in sequence_list[2]:
rank_r = ranked_sequence_list_r.index(sequence) +1
table_file[2].write("\tseqr_%d" % (rank_r))
table_file[2].write("\n")
#Write a row of counts for each sample
for sample_ID in sorted(all_samples_reads):
table_file[2].write(sample_ID+"\t")
for sequence in sequence_list[2]:
if sequence in all_samples_reads[sample_ID]:
seq_count = all_samples_reads[sample_ID][sequence]
else:
seq_count = 0
table_file[2].write(str(seq_count)+"\t")
table_file[2].write("\n")
#Write total counts for each sequence under corresponding column
table_file[2].write("total")
for sequence in sequence_list[2]:
table_file[2].write("\t"+str(total_reads[sequence]))
#Close all output files
for i in range(output_types):
fas_file[i].close()
table_file[i].close()
#NEW: Write a table with UMI statistics
with open(output_folder + "UMI_stats.tab", "w") as stats:
for i in range(len(UMI_stats)):
stats.write("\n" + UMI_stat_names[i] + "\n")
for key,value in sorted(UMI_stats[i].items()):
stats.write(str(key) + "\t" + str(value) + "\n")
#Write a text file with a summary of parameters and various counts
with open(output_folder + "summary.txt", "w") as summary:
summary.write(script_file +"\n")
summary.write(working_folder + "\n\n")
summary.write(str(read_diff) + "\tread_diff\n")
summary.write(str(reject_threshold) + "\treject_threshold\n")
summary.write(str(add_limit) + "\tadd_limit\n\n")
summary.write(str(raw_read_count) + "\tRaw read count\n")
summary.write(str(sum(total_reads.values())) + "\tTotal reads used\n")
summary.write(str(len(total_reads)) + "\tTotal unique sequences\n")
summary.write("\nBefore truncation:\n")
summary.write(str(sum(total_counts.values())) + "\tTotal UMI counts\n")
summary.write(str(total_accepted_counts) + "\tTotal accepted counts\n")
summary.write(str(len(total_counts)) + "\tTotal UMI sequences\n")
summary.write(str(total_accepted_seqs) + "\tTotal accepted sequences\n")
summary.write("\nAfter truncating to threshold:\n")
summary.write(str(reported_UMI_seqs) + "\tReported UMI sequences\n")
summary.write(str(reported_accepted_seqs) + "\tReported accepted sequences\n\n")
summary.write(str(reported_read_seqs) + "\tReported read sequences\n")
end_time = datetime.datetime.now()
duration = end_time - start_time
summary.write("\n")
summary.write(str(start_time) + "\tStart time\n")
summary.write(str(end_time) + "\tEnd time\n")
summary.write(str(duration) + "\tDuration")
print("MAUIcount completed in " + str(duration.total_seconds()) + " seconds")