Simple snakemake workflow for SNP calling, annotation and visualization.
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, topic
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 .
Simple snakemake workflow for SNP calling, annotation and visualization.
Code Snippets
26 27 28 29 30 | shell: """ echo "Input Fastq: {input.fq} " fastqc -o 010.fastqc {input.fq} """ |
43 44 45 46 47 48 49 | shell: """ bwa mem {params.ref} {input.fq} \ | samtools sort - \ > {output.bam} samtools index {output.bam} """ |
59 60 61 62 63 | shell: """ bcftools mpileup -Ou -f {input.ref} {input.bams} \ | bcftools call -mv -Ov -o {output.vcf} """ |
74 75 76 77 78 79 80 81 82 | shell: """ ( cat {input.vcf} \ | vt decompose - \ | vt normalize -n -r {input.ref} - \ | vt uniq - \ | vt view -f "QUAL>20" -h - \ > {output.vcf} ) """ |
100 101 102 103 104 105 106 107 108 109 110 111 | shell: """ mkdir -p 050.snpeff java -Xmx4096m -jar \ {params.snpeff_jar} eff GRCh38.99 \ -dataDir {params.snpeff_db_folder} \ {input.vcf} > {output.vcf} # move output files to the snpeff output folder mv snpEff_genes.txt snpEff_summary.html 050.snpeff """ |
121 122 123 124 125 126 127 128 | shell: """ mkdir -p 060.stats bcftools stats -s - {input.vcf} > {output.stats} plot-vcfstats -P -p 060.stats {output.stats} """ |
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/domivika/Snakemake
Name:
snakemake
Version:
2
Other Versions:
Downloaded:
0
Copyright:
Public Domain
License:
None
- 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...