-
Notifications
You must be signed in to change notification settings - Fork 1
/
viromeQC.py
executable file
·474 lines (335 loc) · 17.7 KB
/
viromeQC.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
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
#!/usr/bin/env python3
import os
import sys
import argparse
import zipfile
import time
import tempfile
import subprocess
import pandas as pd
__author__ = 'Moreno Zolfo (moreno.zolfo@unitn.it)'
__version__ = '1.0.2'
__date__ = '15 Nov. 2022'
def byte_to_megabyte(byte):
"""
Convert byte value to megabyte
"""
return byte / (1024.0**2)
class ReportHook():
def __init__(self):
self.start_time = time.time()
def report(self, blocknum, block_size, total_size):
"""
Print download progress message
"""
if blocknum == 0:
self.start_time = time.time()
if total_size > 0:
sys.stderr.write("Downloading file of size: {:.2f} MB\n"
.format(byte_to_megabyte(total_size)))
else:
total_downloaded = blocknum * block_size
status = "{:3.2f} MB ".format(byte_to_megabyte(total_downloaded))
if total_size > 0:
percent_downloaded = total_downloaded * 100.0 / total_size
# use carriage return plus sys.stderr to overwrite stderr
download_rate = total_downloaded / (time.time() - self.start_time)
estimated_time = (total_size - total_downloaded) / download_rate
estimated_minutes = int(estimated_time / 60.0)
estimated_seconds = estimated_time - estimated_minutes * 60.0
status += ("{:3.2f} % {:5.2f} MB/sec {:2.0f} min {:2.0f} sec "
.format(percent_downloaded,
byte_to_megabyte(download_rate),
estimated_minutes, estimated_seconds))
status += " \r"
sys.stderr.write(status)
def download(url, download_file):
"""
Download a file from a url
"""
# try to import urllib.request.urlretrieve for python3
try:
from urllib.request import urlretrieve
except ImportError:
from urllib import urlretrieve
if not os.path.isfile(download_file):
try:
sys.stderr.write("\nDownloading " + url + "\n")
file, headers = urlretrieve(url, download_file,
reporthook=ReportHook().report)
except EnvironmentError:
sys.stderr.write("\nWarning: Unable to download " + url + "\n")
else:
sys.stderr.write("\nFile {} already present!\n".format(download_file))
def print_version():
print ("Version:\t"+__version__)
print ("Author:\t\t"+__author__)
print ("Software:\t"+'Virome QC')
sys.exit(0)
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
OKGREEN2 = '\033[42m\033[30m'
RED = '\033[1;91m'
CYAN = '\033[0;37m'
def fancy_print(mesg,label,type,reline=False,newLine=False):
opening = "\r" if reline else ''
ending = "\r\n" if not reline or newLine else ''
if len(mesg) < 65:
sys.stdout.write(opening+mesg.ljust(66)+(type+'[ - '+label.center(5)+' - ]'+bcolors.ENDC).ljust(14)+ending)
else:
c=0
wds = []
lines=[]
for word in mesg.split(' '):
if c + len(word)+2 > 65:
print (' '.join(wds))
c=0
wds=[word]
continue
c = c+len(word)+2
wds.append(word)
sys.stdout.write(opening+(' '.join(wds)).ljust(66)+(type+'[ - '+label.center(5)+' - ]'+bcolors.ENDC).ljust(14)+ending)
sys.stdout.flush()
def check_install(req_dmd_db_filename,source):
try:
#download indexes if you don't have it
to_download=[]
fancy_print("Checking Database Files",'...',bcolors.OKBLUE,reline=True)
if not os.path.isdir(INDEX_PATH):
os.mkdir(INDEX_PATH)
remote_links = {
'dropbox': { \
'silva_LSU_clean' : ['https://www.dropbox.com/s/c0nbhkw0ww3lm97/SILVA_132_LSURef_tax_silva.clean.zip?dl=1'], \
'silva_SSU_clean': [
'https://www.dropbox.com/s/mb5a0g7utmcupje/SILVA_132_SSURef_Nr99_tax_silva.clean_1.zip?dl=1', \
'https://www.dropbox.com/s/qqqokke8r26e8ve/SILVA_132_SSURef_Nr99_tax_silva.clean_2.zip?dl=1', \
'https://www.dropbox.com/s/idmbwbavqalse9q/SILVA_132_SSURef_Nr99_tax_silva.clean_3.zip?dl=1'
],
'amph_dmd': [
'https://www.dropbox.com/s/rfer26hdoj3nsm0/amphora_bacteria.dmnd.zip?dl=1', \
'https://www.dropbox.com/s/43nu0l6zkiw2las/amphora_bacteria_294.dmnd.zip?dl=1'
]
},
'zenodo': { \
'silva_LSU_clean' : ['https://zenodo.org/record/4020594/files/SILVA_132_LSURef_tax_silva_clean.zip?download=1'], \
'silva_SSU_clean': ['https://zenodo.org/record/4020594/files/SILVA_132_SSURef_Nr99_tax_silva.clean.zip?download=1'],
'amph_dmd': ['https://zenodo.org/record/4020594/files/amphora_markers.zip?download=1']
},
}
if source in remote_links:
if not os.path.isfile(INDEX_PATH+'/SILVA_132_LSURef_tax_silva.clean.1.bt2'):
to_download.append(remote_links[source]['silva_LSU_clean'])
if not os.path.isfile(INDEX_PATH+'/SILVA_132_SSURef_Nr99_tax_silva.clean.1.bt2'):
to_download.append(remote_links[source]['silva_SSU_clean'])
if not os.path.isfile(INDEX_PATH+'/'+req_dmd_db_filename):
to_download.append(remote_links[source]['amph_dmd'])
fancy_print("Checking Database Files",'OK',bcolors.OKGREEN,reline=True,newLine=True)
if(to_download):
to_download = [_ for grp in to_download for _ in grp]
fancy_print("Using {} as download source for ViromeQC db".format(source),'...',bcolors.OKBLUE,newLine=True)
fancy_print("Need to download {} files".format(len(to_download)),'...',bcolors.OKBLUE,reline=True)
for downloadable in to_download:
download(downloadable, INDEX_PATH+'/tmp.zip')
zipDB = zipfile.ZipFile(INDEX_PATH+'/tmp.zip', 'r')
zipDB.extractall(INDEX_PATH)
zipDB.close()
os.remove(INDEX_PATH+'/tmp.zip')
fancy_print("Uncompressing DB ({} files)".format(len(to_download)),'DONE',bcolors.OKGREEN,reline=True,newLine=True)
except IOError:
print("Failed to retrieve DB")
fancy_print("Failed to retrieve DB",'FAIL',bcolors.FAIL)
sys.exit(1)
def no_fq_extension(string):
z=[]
for p in string.split('.'):
if any([q in p for q in ['bz2','fq','fastq','gz']]): continue
else:
z.append(p)
return '.'.join(z)
try:
from Bio import SeqIO
from Bio.Seq import Seq
from Bio.SeqRecord import SeqRecord
except ImportError as e:
fancy_print("Failed in importing Biopython. Please check Biopython is installed properly on your system!",'FAIL',bcolors.FAIL)
sys.exit(1)
try:
import pysam
except ImportError as e:
fancy_print("Failed in importing pysam. Please check pysam is installed properly on your system!",'FAIL',bcolors.FAIL)
sys.exit(1)
CHECKER_PATH=os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
INDEX_PATH=CHECKER_PATH+"/index/"
LIMIT_OF_DETECTION = 1e-6
parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter,
description='Checks a virome FASTQ file for enrichment efficiency')
parser.add_argument("-i","--input", required=all([x not in sys.argv for x in ['--install','--version']]), nargs="*", help="Raw Reads in FASTQ format. Supports multiple inputs (plain, gz o bz2)")
parser.add_argument("-o",'--output',required=all([x not in sys.argv for x in ['--install','--version']]), help="output file")
parser.add_argument("--minlen", help="Minimum Read Length allowed",default='75')
parser.add_argument("--minqual", help="Minimum Read Average Phred quality",default='20')
parser.add_argument("--minlen_SSU", help="Minimum alignment length when considering SSU rRNA gene",default='50')
parser.add_argument("--minlen_LSU", help="Minimum alignment length when considering LSU rRNA gene",default='50')
parser.add_argument("--bowtie2_threads", help="Number of Threads to use with Bowtie2",default='4')
parser.add_argument("--diamond_threads", help="Number of Threads to use with Diamond",default='4')
parser.add_argument("-w","--enrichment_preset", choices=['human','environmental'], help="Calculate the enrichment basing on human or environmental metagenomes. Defualt: human-microbiome",default='human')
parser.add_argument('--medians', type=str, default=CHECKER_PATH+'/medians.csv', help="File containing reference medians to calculate the enrichment. Default is medians.csv in the script directory. You can specify a different file with this parameter.")
parser.add_argument('--bowtie2_path', type=str, default='bowtie2',
help="Full path to the bowtie2 command to use, deafult assumes "
"that 'bowtie2 is present in the system path")
parser.add_argument('--diamond_path', type=str, default='diamond',
help="Full path to the diamond command to use, deafult assumes "
"that 'diamond is present in the system path")
parser.add_argument("--version", help="Prints version informations", action='store_true')
parser.add_argument("--debug", help="Prints error messages in case of debug", action='store_true')
parser.add_argument("--install", help="Downloads database files", action='store_true')
parser.add_argument("--zenodo", help="Use Zenodo instead of Dropbox to download the DB", action='store_true')
parser.add_argument("--sample_name", help="Optional label for the sample to be included in the output file")
parser.add_argument("--tempdir", help="Temporary Directory override (default is the system temp directory)")
args=parser.parse_args()
medians = pd.read_csv(args.medians,sep='\t')
dwl_source = 'zenodo' if args.zenodo else 'dropbox'
try:
diamond_command = [args.diamond_path,'--version']
with open(os.devnull) as devnull:
ps1 = subprocess.Popen(diamond_command, stdout=subprocess.PIPE,stderr=devnull)
dmd_version = str(ps1.communicate()[0].strip()).strip("'").split(' ')[-1]
dmd_v_split = dmd_version.split('.')
if int(dmd_v_split[1]) == 9 and int(dmd_v_split[2]) < 19:
req_dmd_db_filename='amphora_bacteria.dmnd'
else:
req_dmd_db_filename='amphora_bacteria_294.dmnd'
except:
fancy_print("Failed to detect diamond version",'FAIL',bcolors.FAIL)
sys.exit(1)
if args.version: print_version()
if args.install:
check_install(req_dmd_db_filename, source=dwl_source)
sys.exit(0)
#pre-flight check
for inputFile in args.input:
if not os.path.isfile(inputFile):
fancy_print("Error: file ",inputFile,'does not exist','ERROR',bcolors.FAIL)
commands = [['zcat', '-h'],['bzcat', '-h'],[args.bowtie2_path, '-h'],[args.diamond_path, 'help']]
for sw in commands:
try:
with open(os.devnull, 'w') as devnull:
subprocess.check_call(sw, stdout=devnull, stderr=devnull)
except Exception as e:
fancy_print("Error, command not found: "+sw[0],'ERROR',bcolors.FAIL)
check_install(req_dmd_db_filename,source=dwl_source)
if args.tempdir:
tempfile.tempdir=args.tempdir
try:
tmpdir = tempfile.TemporaryDirectory()
tmpdirname = tmpdir.name
except Exception as e:
fancy_print("Could not create temp folder in "+str(tempfile.tempdir),'FAIL',bcolors.FAIL)
sys.exit(1)
if len(args.input) > 1:
fancy_print('Merging '+str(len(args.input))+' files','...',bcolors.OKBLUE,reline=True)
with open(tmpdirname+'/combined.fastq','a') as combinedFastq:
for infile in args.input:
#print(['cat',infile,'>>',tmpdirname+'/combined.fastq'])
if infile.endswith('.gz'):
uncompression_cmd = 'zcat'
elif infile.endswith('.bz2'):
uncompression_cmd = 'bzcat'
else:
uncompression_cmd = 'cat'
subprocess.check_call([uncompression_cmd,infile],stdout=combinedFastq)
inputFile = tmpdirname+'/combined.fastq'
workingName = args.sample_name if args.sample_name else ','.join([ no_fq_extension(os.path.basename(x)) for x in args.input])
fancy_print('Merging '+str(len(args.input))+' files','DONE',bcolors.OKGREEN,reline=True,newLine=True)
else:
inputFile = args.input[0]
workingName = args.sample_name if args.sample_name else no_fq_extension(os.path.basename(inputFile))
fileName = no_fq_extension(os.path.basename(inputFile))
fastq_len_cmd = [CHECKER_PATH+'/fastq_len_filter.py', '--min_len',args.minlen, '--min_qual',args.minqual,'--count',tmpdirname+'/'+fileName+'.nreads','-i',inputFile,'-o',tmpdirname+'/'+fileName+'.filter.fastq']
try:
fancy_print('[fastq_len_filter] | filtering HQ reads','...',bcolors.OKBLUE,reline=True)
subprocess.check_call(fastq_len_cmd)
with open(tmpdirname+'/'+fileName+'.nreads') as readCounts:
HQReads, totalReads = [line.strip().split('\t')[0:2] for line in readCounts][0]
filteredFile = tmpdirname+'/'+fileName+'.filter.fastq'
fancy_print('[fastq_len_filter] | '+HQReads+' / '+totalReads+' ('+str(round(float(HQReads)/float(totalReads),2)*100)+'%) reads selected','DONE',bcolors.OKGREEN,reline=True,newLine=True)
except Exception as e:
fancy_print('Fatal error running fastq_len_filter. Error message: '+str(e),'FAIL',bcolors.FAIL)
sys.exit(1)
try:
fancy_print('[SILVA_SSU] | Bowtie2 Aligning','...',bcolors.OKBLUE,reline=True)
bt2_command = ['bowtie2','--quiet','-p',args.bowtie2_threads,'--very-sensitive-local','-x',INDEX_PATH+'/SILVA_132_SSURef_Nr99_tax_silva.clean','--no-unal','-U',filteredFile,'-S','-']
if args.debug: print(' '.join(bt2_command))
p4 = subprocess.Popen(['wc','-l'], stdin=subprocess.PIPE,stdout=subprocess.PIPE)
p3 = subprocess.Popen(['samtools','view','-'], stdin=subprocess.PIPE,stdout=p4.stdin)
p2 = subprocess.Popen([CHECKER_PATH+'/cmseq/cmseq/filter.py','--minlen',args.minlen_SSU,'--minqual','20','--maxsnps','0.075'],stdin=subprocess.PIPE,stdout=p3.stdin)
p1 = subprocess.Popen(bt2_command, stdout=p2.stdin)
p1.wait()
p2.communicate()
p3.communicate()
SSU_reads = int(p4.communicate()[0])
SSU_reads_rate = max(LIMIT_OF_DETECTION,float(SSU_reads)/float(HQReads)*100)
enrichment_SSU = min(100,float(medians.loc[medians['parameter']=='rRNA_SSU',args.enrichment_preset]) / float(SSU_reads_rate))
fancy_print('[SILVA_SSU] | Bowtie2 Alignment rate: '+str(round(SSU_reads_rate,4))+'% (~'+str(round(enrichment_SSU,1))+'x)','DONE',bcolors.OKGREEN,reline=True,newLine=True)
if(SSU_reads_rate <= LIMIT_OF_DETECTION):
fancy_print('[SILVA_SSU] | Value is below limit-of-detection ('+str(SSU_reads)+' SSU reads)','!!',bcolors.WARNING)
except Exception as e:
fancy_print('Fatal error running Bowtie2 on SSU rRNA. Error message: '+str(e),'FAIL',bcolors.FAIL)
sys.exit(1)
try:
fancy_print('[SILVA_LSU] | Bowtie2 Aligning','...',bcolors.OKBLUE,reline=True)
bt2_command = ['bowtie2','--quiet','-p',args.bowtie2_threads,'--very-sensitive-local','-x',INDEX_PATH+'/SILVA_132_LSURef_tax_silva.clean','--no-unal','-U',filteredFile,'-S','-']
if args.debug: print(' '.join(bt2_command))
#print("AAA")
p4 = subprocess.Popen(['wc','-l'], stdin=subprocess.PIPE,stdout=subprocess.PIPE)
p3 = subprocess.Popen(['samtools','view','-'], stdin=subprocess.PIPE,stdout=p4.stdin)
p2 = subprocess.Popen([CHECKER_PATH+'/cmseq/cmseq/filter.py','--minlen',args.minlen_LSU,'--minqual','20','--maxsnps','0.075'],stdin=subprocess.PIPE,stdout=p3.stdin)
p1 = subprocess.Popen(bt2_command, stdout=p2.stdin)
p1.wait()
p2.communicate()
p3.communicate()
LSU_reads = int(p4.communicate()[0])
LSU_reads_rate = max(LIMIT_OF_DETECTION,float(LSU_reads)/float(HQReads)*100)
enrichment_LSU = min(100,float(medians.loc[medians['parameter']=='rRNA_LSU',args.enrichment_preset]) / float(LSU_reads_rate))
fancy_print('[SILVA_LSU] | Bowtie2 Alignment rate: '+str(round(LSU_reads_rate,4))+'% (~'+str(round(enrichment_LSU,1))+'x)','DONE',bcolors.OKGREEN,reline=True,newLine=True)
if(LSU_reads_rate <= LIMIT_OF_DETECTION):
fancy_print('[SILVA_LSU] | Value is below limit-of-detection ('+str(LSU_reads)+' LSU reads)','!!',bcolors.WARNING)
except Exception as e:
fancy_print('Fatal error running Bowtie2 on LSU rRNA. Error message: '+str(e),'FAIL',bcolors.FAIL)
sys.exit(1)
try:
fancy_print('[SC-Markers] | Diamond Aligning','...',bcolors.OKBLUE,reline=True)
diamond_command = [args.diamond_path,'blastx','-q',filteredFile,'--threads',args.diamond_threads,'--outfmt','6','--db',INDEX_PATH+'/'+req_dmd_db_filename,'--id','50','--max-hsps','35','-k','0','--quiet']
p2 = subprocess.Popen('cut -f1 | sort | uniq | wc -l',shell=True, stdin=subprocess.PIPE,stdout=subprocess.PIPE)
if args.debug:
p1 = subprocess.Popen(diamond_command, stdout=p2.stdin)
else:
if args.debug:
p1 = subprocess.Popen(diamond_command, stdout=p2.stdin)
else:
with open(os.devnull) as devnull:
p1 = subprocess.Popen(diamond_command, stdout=p2.stdin,stderr=devnull)
singleCopyMarkers_reads = int(p2.communicate()[0])
singleCopyMarkers_reads_rate = max(LIMIT_OF_DETECTION,float(singleCopyMarkers_reads)/float(HQReads)*100)
enrichment_singleCopyMarkers = min(100,float(medians.loc[medians['parameter']=='AMPHORA2',args.enrichment_preset]) / float(singleCopyMarkers_reads_rate))
fancy_print('[SC-Markers] | Diamond Alignment rate: '+str(round(singleCopyMarkers_reads_rate,4))+'% (~'+str(round(enrichment_singleCopyMarkers,1))+'x)','DONE',bcolors.OKGREEN,reline=True,newLine=True)
if(singleCopyMarkers_reads <= LIMIT_OF_DETECTION):
fancy_print('[SC-Markers] | Value is below to limit-of-detection ('+str(singleCopyMarkers_reads)+' reads)','!!',bcolors.WARNING)
except Exception as e:
fancy_print('Fatal error running Diamond on Single-Copy-Proteins. Error message: '+str(e),'FAIL',bcolors.FAIL)
sys.exit(1)
overallEnrichmenScore = min(enrichment_SSU,enrichment_LSU,enrichment_singleCopyMarkers)
to_out=[workingName,totalReads,HQReads,SSU_reads_rate,LSU_reads_rate,singleCopyMarkers_reads_rate,overallEnrichmenScore]
outFile = open(args.output,'w')
outFile.write("Sample\tReads\tReads_HQ\tSSU rRNA alignment rate\tLSU rRNA alignment rate\tBacterial_Markers alignment rate\ttotal enrichmnet score\n")
outFile.write('\t'.join([str(x) for x in to_out])+'\n')
outFile.close()
fancy_print('Finished','',bcolors.ENDC)
fancy_print(' | Overall Enrichment Score: ~'+str(round(overallEnrichmenScore,1))+'x','.',bcolors.ENDC)
fancy_print(' | Output File: '+args.output,'.',bcolors.ENDC)
fancy_print('Have a nice day! ','DONE',bcolors.OKGREEN)
tmpdir.cleanup()