-
Notifications
You must be signed in to change notification settings - Fork 1
/
flaq_mpx.py
executable file
·265 lines (223 loc) · 17.5 KB
/
flaq_mpx.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
#!/usr/bin/env python
#Author: Sarah Schmedes
#Email: [email protected]
#Uses local containers on HiPerGator
'''
This program generates a consensus assembly from tile amplicon whole-genome data for monkeypox from
clinical specimens. Assumes Illumina paired-end data and requires a reference fasta, gff3, and primer scheme
bed file.
'''
import os
import sys
import subprocess
import argparse
import datetime
import pandas as pd
import re
import os.path
#Parse arguments, get path for fastqs, primer version
parser = argparse.ArgumentParser(usage='flaq_mpx.py <input_dir> [options]')
parser.add_argument('input', help='path to dir with fastqs')
parser.add_argument('--primer_bed', help='path to primer bed file', required=True)
parser.add_argument('--lib_frag', default='frag', choices=['no_frag', 'frag'], help='specify if input amplicons were fragmented, (default: no_frag)', required=True)
parser.add_argument('--threads', default=8, dest='threads', help='specify number of threads, (default: %(default)s)', required=True)
parser.add_argument('--ref_fasta', help='path to reference fasta', required=True)
parser.add_argument('--ref_gff', help='path to reference gff', required=True)
parser.add_argument('--version', action='version', version='This is flaq_mpx: Version 1.0.0', help='print version')
if len(sys.argv[1:]) == 0:
parser.print_help()
parser.exit()
args = parser.parse_args()
input_dir = os.path.abspath(args.input) + '/'
primers = os.path.abspath(args.primer_bed)
frag = args.lib_frag
threads = str(args.threads)
ref = os.path.abspath(args.ref_fasta)
gff = os.path.abspath(args.ref_gff)
cwd = os.getcwd() + '/'
output_dir = cwd + datetime.date.today().strftime('%Y-%m-%d') + '_flaq_run'
subprocess.run('mkdir -p ' + output_dir, shell=True, check=True) #make output directory
subprocess.run('mkdir -p assemblies', shell=True, check=True) #make final assemblies folder
subprocess.run('mkdir -p variants', shell=True, check=True) #make final variants folder
subprocess.run('mkdir -p vadr_error_reports', shell=True, check=True) #folder for vadr error report for easier review
adapters = '/bbmap/resources/adapters.fa'
phix = '/bbmap/resources/phix174_ill.ref.fa.gz'
#Get sample names
samples = []
fastqs = []
for f in os.listdir(input_dir):
if f.endswith('.fastq.gz'):
fastqs.append(f)
sn = f.split("_")
sn = sn[0]
samples.append(sn)
unique = set(samples)
samples = list(unique)
samples.sort()
#Create output file
report = open(output_dir + '/report.txt', 'w')
#header = ['sampleID', 'reference', 'start', 'end', 'num_raw_reads', 'num_clean_reads', 'num_mapped_reads', 'percent_mapped_clean_reads', 'cov_bases_mapped', 'percent_genome_cov_map', 'mean_depth', 'mean_base_qual', 'mean_map_qual', 'assembly_length', 'numN', 'percent_ref_genome_cov', 'VADR_flag', 'QC_flag', 'nextclade']
header = ['sampleID', 'reference', 'start', 'end', 'num_raw_reads', 'num_clean_reads', 'num_mapped_reads', 'percent_mapped_clean_reads', 'cov_bases_mapped', 'percent_genome_cov_map', 'mean_depth', 'mean_base_qual', 'mean_map_qual', 'assembly_length', 'numN', 'percent_ref_genome_cov', 'QC_flag']
report.write('\t'.join(map(str,header)) + '\n')
#Run pipeline for each sample
for s in samples:
sample_dir = output_dir + '/' + s + '/'
subprocess.run('mkdir -p ' + sample_dir, shell=True, check=True) #mkdir for each sample name
subprocess.run('cp ' + input_dir + s + '*.fastq.gz ' + sample_dir, shell=True, check=True) #cp fastqs to new dir
out_log = open(sample_dir + s + '.out', 'w')
err_log = open(sample_dir + s + '.err', 'w')
#Get number of raw reads
proc_1 = subprocess.run('zcat ' + sample_dir + s + '_1.fastq.gz | wc -l', shell=True, capture_output=True, text=True, check=True)
wc_out_1 = proc_1.stdout.rstrip()
reads_1 = int(wc_out_1) / 4
proc_2 = subprocess.run('zcat ' + sample_dir + s + '_2.fastq.gz | wc -l', shell=True, capture_output=True, text=True, check=True)
wc_out_2 = proc_2.stdout.rstrip()
reads_2 = int(wc_out_2) / 4
raw_reads = reads_1 + reads_2
raw_reads = int(raw_reads)
#Run fastqc on original reads
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/fastqc_0.11.9.sif fastqc ' + sample_dir + '*.fastq.gz --threads ' + threads + ' --outdir ' + sample_dir, shell=True, stdout=out_log, stderr=err_log, check=True)
#Rename fastqc output files
subprocess.run('mv ' + sample_dir + s + '_1_fastqc.html ' + sample_dir + s + '_1_original_fastqc.html', shell=True, check=True)
subprocess.run('mv ' + sample_dir + s + '_1_fastqc.zip ' + sample_dir + s + '_1_original_fastqc.zip', shell=True, check=True)
subprocess.run('mv ' + sample_dir + s + '_2_fastqc.html ' + sample_dir + s + '_2_original_fastqc.html', shell=True, check=True)
subprocess.run('mv ' + sample_dir + s + '_2_fastqc.zip ' + sample_dir + s + '_2_original_fastqc.zip', shell=True, check=True)
#Run trimmomatic
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/trimmomatic_0.39.sif trimmomatic PE -threads ' + threads + ' -phred33 -trimlog ' + sample_dir + s + '.log ' + sample_dir + s + '_1.fastq.gz ' + sample_dir + s + '_2.fastq.gz ' + sample_dir + s + '_1.trim.fq.gz ' + sample_dir + s + '_unpaired_1.trim.fq.gz ' + sample_dir + s + '_2.trim.fq.gz ' + sample_dir + s + '_unpaired_2.trim.fq.gz SLIDINGWINDOW:4:30 MINLEN:75 TRAILING:20 > ' + sample_dir + s + '_trimstats.txt', shell=True, stdout=out_log, stderr=err_log, check=True)
#rm unpaired reads
subprocess.run('rm ' + sample_dir + s + '*_unpaired*.trim.fq.gz', shell=True, check=True)
#rm fastq files copied from previous dir
subprocess.run('rm ' + sample_dir + s + '*.fastq.gz', shell=True, check=True)
#Run bbduk to remove Illumina adapter sequences and any PhiX contamination
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/bbtools_38.76.sif bbduk.sh in1=' + sample_dir + s + '_1.trim.fq.gz in2=' + sample_dir + s + '_2.trim.fq.gz out1=' + sample_dir + s + '_1.rmadpt.fq.gz out2=' +sample_dir + s + '_2.rmadpt.fq.gz ref=' + adapters + ' stats=' + sample_dir + s + '.adapters.stats.txt ktrim=r k=23 mink=11 hdist=1 tpe tbo', shell=True, stdout=out_log, stderr=err_log, check=True)
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/bbtools_38.76.sif bbduk.sh in1=' + sample_dir + s + '_1.rmadpt.fq.gz in2=' + sample_dir + s + '_2.rmadpt.fq.gz out1=' + sample_dir + s + '_1.fq.gz out2=' + sample_dir + s + '_2.fq.gz outm=' + sample_dir + s + '_matchedphix.fq ref=' + phix + ' k=31 hdist=1 stats=' + sample_dir + s + '_phixstats.txt', shell=True, stdout=out_log, stderr=err_log, check=True)
subprocess.run('rm ' + sample_dir + '*.trim.fq.gz', shell=True, check=True)
subprocess.run('rm ' + sample_dir + '*.rmadpt.fq.gz', shell=True, check=True)
#Run fastqc on clean forward and reverse reads
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/fastqc_0.11.9.sif fastqc ' + sample_dir + '*.fq.gz --threads ' + threads, shell=True, stdout=out_log, stderr=err_log, check=True)
#Rename fastqc output files
subprocess.run('mv ' + sample_dir + s + '_1_fastqc.html ' + sample_dir + s + '_1_clean_fastqc.html', shell=True, check=True)
subprocess.run('mv ' + sample_dir + s + '_1_fastqc.zip ' + sample_dir + s + '_1_clean_fastqc.zip', shell=True, check=True)
subprocess.run('mv ' + sample_dir + s + '_2_fastqc.html ' + sample_dir + s + '_2_clean_fastqc.html', shell=True, check=True)
subprocess.run('mv ' + sample_dir + s + '_2_fastqc.zip ' + sample_dir + s + '_2_clean_fastqc.zip', shell=True, check=True)
#Run multiqc
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/multiqc_1.8.sif multiqc ' + sample_dir + '*_fastqc.zip -o ' + sample_dir, shell=True, stdout=out_log, stderr=err_log, check=True)
#Get number of clean reads
proc_c1 = subprocess.run('zcat ' + sample_dir + s + '_1.fq.gz | wc -l', shell=True, capture_output=True, text=True, check=True)
wc_out_c1 = proc_c1.stdout.rstrip()
reads_c1 = int(wc_out_c1) / 4
proc_c2 = subprocess.run('zcat ' + sample_dir + s + '_2.fq.gz | wc -l', shell=True, capture_output=True, text=True, check=True)
wc_out_c2 = proc_c2.stdout.rstrip()
reads_c2 = int(wc_out_c2) / 4
clean_reads = reads_c1 + reads_c2
clean_reads = int(clean_reads)
#Map reads to reference
align_dir = sample_dir + 'alignment/'
subprocess.run('mkdir ' + align_dir, shell=True, check=True)
#If frag == 'no_frag', do not remove PCR duplicates
if frag == 'no_frag':
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/bwa_0.7.17.sif bwa mem -t ' + threads + ' ' + ref + ' ' + sample_dir + s + '_1.fq.gz ' + sample_dir + s + '_2.fq.gz | singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools view - -F 4 -u -h | singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools sort > ' + align_dir + s + '.sorted.bam', shell=True, check=True)
#If frag == 'frag', remove PCR duplicates
elif frag == 'frag':
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/bwa_0.7.17.sif bwa mem -t ' + threads + ' ' + ref + ' ' + sample_dir + s + '_1.fq.gz ' + sample_dir + s + '_2.fq.gz | singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools view - -F 4 -u -h | singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools sort -n > ' + align_dir + s + '.namesorted.bam', shell=True, check=True) #output name sorted bam
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools fixmate -m ' + align_dir + s + '.namesorted.bam ' + align_dir + s + '.fixmate.bam', shell=True, check=True) #fixmate
#Create positional sorted bam from fixmate.bam
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools sort -o ' + align_dir + s + '.positionsort.bam ' + align_dir + s + '.fixmate.bam', shell=True, check=True)
#Mark duplicate reads
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools markdup ' + align_dir + s + '.positionsort.bam ' + align_dir + s + '.markdup.bam', shell=True, check=True)
#Remove duplicate reads
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools markdup -r ' + align_dir + s + '.positionsort.bam ' + align_dir + s + '.dedup.bam', shell=True, check=True)
#Sort dedup.bam and rename to .sorted.bam
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools sort -o ' + align_dir + s + '.sorted.bam ' + align_dir + s + '.dedup.bam', shell=True, check=True)
#Index final sorted bam from either no_frag or frag paths
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools index ' + align_dir + s + '.sorted.bam', shell=True, check=True)
#Trim primers with iVar
subprocess.run('cd ' + align_dir + ' && singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/ivar_1.3.1.sif ivar trim -i ' + s + '.sorted.bam -b ' + primers + ' -p ' + s + '.primertrim -e', shell=True, stdout=out_log, stderr=err_log, check=True)
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools sort ' + align_dir + s + '.primertrim.bam -o ' + align_dir + s + '.primertrim.sorted.bam', shell=True, stdout=out_log, stderr=err_log, check=True)
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools index ' + align_dir + s + '.primertrim.sorted.bam', shell=True, stdout=out_log, stderr=err_log, check=True)
subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools coverage ' + align_dir + s + '.primertrim.sorted.bam -o ' + align_dir + s + '.coverage.txt', shell=True, stdout=out_log, stderr=err_log, check=True)
#Get map stats
with open(align_dir + s + '.coverage.txt', 'r') as cov_report:
header = cov_report.readline()
header = header.rstrip()
stats = cov_report.readline()
stats = stats.rstrip()
stats = stats.split()
ref_name = stats[0]
start = stats[1]
end = stats[2]
reads_mapped = stats[3]
cov_bases = stats[4]
cov = stats[5]
depth = stats[6]
baseq = stats[7]
mapq = stats[8]
#Get percentage of mapped reads/clean reads
percent_map = "%0.4f"%(((int(reads_mapped)/int(clean_reads)))*100)
#Call variants
var_path = sample_dir + 'variants/'
subprocess.run('mkdir ' + var_path, shell=True, check=True)
subprocess.run('cd ' + var_path + ' && singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools mpileup -A -d 8000 --reference ' + ref + ' -B -Q 0 ' + align_dir + s + '.primertrim.sorted.bam | singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/ivar_1.3.1.sif ivar variants -r ' + ref + ' -m 10 -p ' + s + '.variants -q 20 -t 0.25 -g ' + gff, shell=True, stdout=out_log, stderr=err_log, check=True)
#Generate consensus assembly
assem_path = sample_dir + 'assembly/'
subprocess.run('mkdir ' + assem_path, shell=True, check=True)
subprocess.run('cd ' + assem_path + ' && singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/samtools_1.12.sif samtools mpileup -A -B -d 8000 --reference ' + ref + ' -Q 0 ' + align_dir + s + '.primertrim.sorted.bam | singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/ivar_1.3.1.sif ivar consensus -t 0 -m 10 -n N -p ' + s + '.consensus', shell=True, stdout=out_log, stderr=err_log, check=True)
#Gather QC metrics for consensus assembly
with open(assem_path + s + '.consensus.fa', 'r') as assem:
header = assem.readline()
header = header.rstrip()
bases = assem.readline()
bases = bases.rstrip()
num_bases = len(bases)
ns = bases.count('N')
called = num_bases - ns
pg = "%0.4f"%((called/int(end))*100)
#Rename header in fasta to just sample name
subprocess.run('sed -i \'s/^>.*/>' + s + '/\' ' + assem_path + s + '.consensus.fa', shell=True, check=True)
#QC flag
pg_flag = ''
dp_flag = ''
qc_flag = ''
if float(pg) < 79.5:
pg_flag = 'FAIL: Percent genome < 80%'
qc_flag = qc_flag + pg_flag
else:
if float(depth) < 100:
dp_flag = 'FAIL: Mean read depth < 100x'
qc_flag = qc_flag + dp_flag
if qc_flag == '':
qc_flag = qc_flag + 'PASS'
#Copy passing ivar assemblies to assemblies folder and variant files to variants folder
if qc_flag == 'PASS':
subprocess.run('cp ' + assem_path + s + '.consensus.fa assemblies/', shell=True, check=True)
subprocess.run('cp ' + var_path + s + '.variants.tsv variants/', shell=True, check=True)
#Run VADR
#subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/vadr_1.3.sif /opt/vadr/vadr/miniscripts/fasta-trim-terminal-ambigs.pl --minlen 50 --maxlen 30000 ' + assem_path + s + '.consensus.fa > ' + assem_path + s + '.trimmed.fasta', shell=True, stdout=out_log, stderr=err_log, check=True)
#subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/vadr_1.3.sif v-annotate.pl --split --cpu 8 --glsearch -s -r --nomisc --mkey sarscov2 --lowsim5seq 6 --lowsim3seq 6 --alt_fail lowscore,insertnn,deletinn --mdir /opt/vadr/vadr-models/ ' + assem_path + s + '.trimmed.fasta -f ' + assem_path + 'vadr_results', shell=True, stdout=out_log, stderr=err_log, check=True)
#Parse through VADR outputs to get PASS or REVIEW flag
#vadr_flag = ''
#with open(assem_path + 'vadr_results/vadr_results.vadr.pass.list', 'r') as p_list:
#result = p_list.readline()
#result = result.rstrip()
#if result == s:
#vadr_flag = 'PASS'
#with open(assem_path + 'vadr_results/vadr_results.vadr.fail.list', 'r') as f_list:
#result = f_list.readline()
#result = result.rstrip()
#if result == s:
#vadr_flag = 'REVIEW'
#Copy VADR error report to main analysis folder for easier review
#if vadr_flag == 'REVIEW':
#subprocess.run('cp ' + assem_path + 'vadr_results/vadr_results.vadr.alt.list vadr_error_reports/', shell=True, check=True)
#subprocess.run('mv vadr_error_reports/vadr_results.vadr.alt.list vadr_error_reports/' + s + '.vadr.alt.list', shell=True, check=True)
#Run nextclade
#subprocess.run('singularity exec -B $(pwd):/data /apps/staphb-toolkit/containers/nextclade_2021-03-15.sif nextclade --input-fasta ' + assem_path + s + '.consensus.fa --output-csv ' + assem_path + 'nextclade_report.csv --jobs ' + threads, shell=True, check=True)
#Write to output file
#results = [s, ref_name, start, end, raw_reads, clean_reads, reads_mapped, percent_map, cov_bases, cov, depth, baseq, mapq, num_bases, ns, pg, vadr_flag, qc_flag, clade]
results = [s, ref_name, start, end, raw_reads, clean_reads, reads_mapped, percent_map, cov_bases, cov, depth, baseq, mapq, num_bases, ns, pg, qc_flag]
report.write('\t'.join(map(str,results)) + '\n')
out_log.close()
err_log.close()
report.close()
#Create multi-fasta file of only passing assemblies
subprocess.run('cat assemblies/*.fa > assemblies.fasta', shell=True, check=True)