ENA SARS-CoV-2 Nanopore Amplicon Sequencing Analysis Workflow

public public 1yr ago Version: Version 1 0 bookmarks

Pipeline for mapping SARS-CoV2 nanopore reads using nextflow

Code Snippets

28
29
30
"""
cutadapt -u 30 -u -30 -o trimmed.fastq ${input_file} -m 75 -j ${task.cpus} --quiet
"""
53
54
55
"""
minimap2 -Y -t ${task.cpus} -x map-ont -a ${ref} ${trimmed} | samtools view -bF 4 - | samtools sort -@ ${task.cpus} - > ${run_id}.bam
"""
74
75
76
77
"""
samtools mpileup -a -A -Q 0 -d 8000 -f ${sars2_fasta} ${bam} > \
${run_id}.pileup
"""
95
96
97
"""
cat ${pileup} | awk '{print \$2,","\$3,","\$4}' > ${run_id}.coverage
"""
118
119
120
121
122
123
124
"""
samtools index -@ ${task.cpus} ${bam}
bam_to_vcf.py -b ${bam} -r ${ref} --mindepth 30 --minAF 0.1 -c ${task.cpus} -o ${run_id}.vcf
filtervcf.py -i ${run_id}.vcf -o ${run_id}_filtered.vcf
bgzip ${run_id}.vcf
bgzip ${run_id}_filtered.vcf
"""
141
142
143
144
145
"""
zcat ${vcf} | sed "s/^NC_045512.2/NC_045512/" > \
${run_id}.newchr.vcf
java -Xmx4g -jar /data/tools/snpEff/snpEff.jar -q -no-downstream -no-upstream -noStats sars.cov.2 ${run_id}.newchr.vcf > ${run_id}.annot.vcf
"""
165
166
167
168
169
"""
tabix ${vcf}
vcf2consensus.py -v ${vcf} -d ${coverage} -r ${sars2_fasta} -o ${run_id}_consensus.fasta -dp 30 -n ${run_id}
bgzip ${run_id}_consensus.fasta
"""
ShowHide 4 more snippets with no or duplicated tags.

Login to post a comment if you would like to share your experience with this workflow.

Do you know this workflow well? If so, you can request seller status , and start supporting this workflow.

Free

Created: 1yr ago
Updated: 1yr ago
Maitainers: public
URL: https://github.com/dnieuw/ENA_SARS_Cov2_nanopore
Name: ena-sars-cov-2-nanopore-amplicon-sequencing-analys
Version: Version 1
Badge:
workflow icon

Insert copied code into your website to add a link to this workflow.

Downloaded: 0
Copyright: Public Domain
License: GNU General Public License v3.0
  • Future updates

Related Workflows

cellranger-snakemake-gke
snakemake workflow to run cellranger on a given bucket using gke.
A Snakemake workflow for running cellranger on a given bucket using Google Kubernetes Engine. The usage of this workflow ...