Help improve this workflow!
This workflow has been published but could be further improved with some additional meta data:- Keyword(s) in categories input, output, operation
You can help improve this workflow by suggesting the addition or removal of keywords, suggest changes and report issues, or request to become a maintainer of the Workflow .
This is my Snakemake workflow for 16S amplicon sequencing runs. Using a Snakemake workflow helps increase reproducibility and access across different computers. These commands can also be broken out into separate bash scripts, but using a Snakemake work
Code Snippets
13 14 15 16 17 18 19 20 21 22 23 24 25 | shell: """ module purge all module load qiime2/2021.11 qiime dada2 denoise-paired --verbose \ --i-demultiplexed-seqs {input} \ --p-trunc-len-f 240 --p-trunc-len-r 240 \ --o-representative-sequences {output.seqs} \ --o-table {output.table} \ --o-denoising-stats {output.stats} """ |
6 7 8 9 10 11 12 13 14 15 | shell: """ module purge all module load qiime2/2021.11 qiime tools import --input-path {input} \ --input-format PairedEndFastqManifestPhred33 \ --output-path {output} \ --type SampleData[PairedEndSequencesWithQuality] """ |
22 23 24 25 26 27 28 29 | shell: """ module purge all module load qiime2/2021.11 qiime demux summarize --i-data {input} \ --o-visualization {output} """ |
9 10 11 12 13 14 15 16 17 18 | shell: """ module purge all module load qiime2/2021.11 qiime feature-table merge \ --i-tables {input.round1} {input.round2} {input.round3} \ --o-merged-table {output} """ |
28 29 30 31 32 33 34 35 36 37 | shell: """ module purge all module load qiime2/2021.11 qiime feature-table merge-seqs \ --i-data {input.round1} {input.round2} {input.round3} \ --o-merged-data {output} """ |
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | shell: """ module purge all module load qiime2/2021.11 qiime metadata tabulate \ --m-input-file {input.round1} \ --o-visualization {output.round1} qiime metadata tabulate \ --m-input-file {input.round2} \ --o-visualization {output.round2} qiime metadata tabulate \ --m-input-file {input.round3} \ --o-visualization {output.round3} """ |
11 12 13 14 15 16 17 18 19 20 | shell: """ module purge all module load qiime2/2021.11 qiime feature-classifier classify-sklearn \ --i-classifier {params.classifier_path} \ --i-reads {input} \ --o-classification {output} """ |
12 13 14 15 16 17 18 19 20 21 22 | shell: """ module purge all module load qiime2/2021.11 qiime phylogeny align-to-tree-mafft-fasttree \ --i-sequences {input} \ --o-alignment {output.alignment} \ --o-masked-alignment {output.masked_alignment} \ --o-tree {output.tree} --o-rooted-tree {output.rooted_tree} """ |
6 7 8 9 10 11 12 13 14 15 16 17 | shell: """ module purge all module load qiime2/2021.11 qiime cutadapt trim-paired --i-demultiplexed-sequences {input} \ --p-front-f GTGYCAGCMGCCGCGGTAA \ --p-front-r CCGYCAATTYMTTTRAGTTT \ --p-error-rate 0.1 \ --p-overlap 3 \ --o-trimmed-sequences {output} """ |
25 26 27 28 29 30 31 32 | shell: """ module purge all module load qiime2/2021.11 qiime demux summarize --i-data {input} \ --o-visualization {output} """ |
Support
Do you know this workflow well? If so, you can
request seller status , and start supporting this workflow.
Created: 1yr ago
Updated: 1yr ago
Maitainers:
public
URL:
https://github.com/mckfarm/snakemake_16S
Name:
snakemake_16s
Version:
1
Downloaded:
0
Copyright:
Public Domain
License:
None
Keywords:
- Future updates
Related Workflows
ENCODE pipeline for histone marks developed for the psychENCODE project
psychip pipeline is an improved version of the ENCODE pipeline for histone marks developed for the psychENCODE project.
The o...
Near-real time tracking of SARS-CoV-2 in Connecticut
Repository containing scripts to perform near-real time tracking of SARS-CoV-2 in Connecticut using genomic data. This pipeli...
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 ...
ATLAS - Three commands to start analyzing your metagenome data
Metagenome-atlas is a easy-to-use metagenomic pipeline based on snakemake. It handles all steps from QC, Assembly, Binning, t...
raw sequence reads
Genome assembly
Annotation track
checkm2
gunc
prodigal
snakemake-wrapper-utils
MEGAHIT
Atlas
BBMap
Biopython
BioRuby
Bwa-mem2
cd-hit
CheckM
DAS
Diamond
eggNOG-mapper v2
MetaBAT 2
Minimap2
MMseqs
MultiQC
Pandas
Picard
pyfastx
SAMtools
SemiBin
Snakemake
SPAdes
SqueezeMeta
TADpole
VAMB
CONCOCT
ete3
gtdbtk
h5py
networkx
numpy
plotly
psutil
utils
metagenomics
RNA-seq workflow using STAR and DESeq2
This workflow performs a differential gene expression analysis with STAR and Deseq2. The usage of this workflow is described ...
This Snakemake pipeline implements the GATK best-practices workflow
This Snakemake pipeline implements the GATK best-practices workflow for calling small germline variants. The usage of thi...