A snakemake-wrapper for easily creating de novo monkeypox genome assemblies from Oxford Nanopore (ONT) sequencing data, using read filtering, assembly, long and short read polishing, and reference-based polishing.
Forked from pmenzel/ont-assembly-snake, See the preprint here: Snakemake Workflows for Long-read Bacterial Genome Assembly and Evaluation, Preprints.org 2022
read filtering | assembly | long read polishing | short read polishing | reference-based polishing |
---|---|---|---|---|
Filtlong | Flye raven miniasm Unicycler |
racon medaka |
pilon Polypolish |
Homopolish proovframe |
# Install
git clone https://github.com/cinnetcrash/ont-monkeypox.git
conda config --add channels bioconda
conda env create -n ont-monkeypox --file ont-monkeypox/env/conda-main.yaml
conda activate ont-monkeypox
# Prepare ONT reads, one file per sample
mkdir fastq-ont
cp /path/to/my/data/my_sample/ont_reads.fastq.gz fastq-ont/mysample.fastq.gz
# Declare desired combination of read filtering, assembly and polishing
mkdir assemblies
mkdir assemblies/mysample_flye+medaka
mkdir assemblies/mysample+filtlongMB500_flye+racon2+medaka
mkdir assemblies/mysample_raven2+medaka+pilon
[...]
# Run workflow
snakemake -s ont-monkeypox/Snakefile --use-conda --cores 20
Clone repository, for example into the existing folder /opt/software/
:
git clone https://github.com/cinnetcrash/ont-monkeypox.git /opt/software/ont-monkeypox
Install conda and create a new environment called ont-monkeypox
:
conda config --add channels bioconda
conda env create -n ont-monkeypox --file /opt/software/ont-monkeypox/env/conda-main.yaml
Activate the environment:
conda activate ont-monkeypox
First, prepare a folder called fastq-ont/
containing the ONT sequencing reads as
one .fastq
or .fastq.gz
file per sample, e.g. fastq-ont/sample1.fastq.gz
.
Next, create a folder assemblies
and in there, create empty folders specifying
the desired combinations of read filtering, assembly, and polishing steps by using specific keywords for each program, see below.
The first part of a folder name is a sample name, which must match the filenames in fastq-ont/
and, optionally, fastq-illumina/
.
The next part can be a keyword for read filtering with Filtlong, see below, which is separated from the sample name by +
.
Then follows, separated by an underscore, a keyword for the assembler.
NB: This also means that sample names must not contain underscores.
After the keyword for the assembler follow the keywords for one ore more polishing steps, all separated by +
.
After making the desired subfolders in assemblies/
, run the workflow, e.g. with 12 threads:
snakemake -s /opt/software/ont-monkeypox/Snakefile --use-conda --cores 12
Assemblies created in each step are contained in the files output.fa
in each folder and symlinked as .fa
files in the assemblies/
folder, see the example below.
The ONT reads can be filtered by length and quality using Filtlong prior to the assembly.
The available keywords are:
filtlong
:
This will filter the ONT reads in fastq-ont/mysample.fastq
and keep only
reads longer than 1000 bases; using the Filtlong option --min_length
. The filtered read set is written to
fastq-ont/mysample+filtlong.fastq
. The length can be changed using the
snakemake configuration option filtlong_min_read_length
.
filtlongPC<p>
This will filter the reads to only include the top p
percent of megabases from reads with highest average quality using
the Filtlong option --keep_percent
.
Further, reads are filtered by their length as above. The output is written to fastq-ont/mysample+filtlongPC<p>.fastq
.
filtlongMB<m>
This will filter the reads to only include reads with highest average quality up to a total length of m
megabases.
Further, reads are filtered by their length. The output is written to fastq-ont/mysample+filtlongMB<m>.fastq
.
filtlongMB<m>,<q>,<l>
This will filter the reads to only include reads up to a total length of m
megabases, which are filtered by length
and quality, where q
and l
set the priority for each using the Filtlong options --mean_q_weight
and --length_weight
, respectively.
See also the section in the Filtlong docs.
Further, reads are filtered by their length as above. The output is written to fastq-ont/mysample+filtlongMB<m>,<q>,<l>.fastq
.
filtlongMB<m>,<q>,<l>,<n>
As above, but the the minimum read length is explicitly specified by n
and not by the global option filtlong_min_read_length
:
The output is written to fastq-ont/mysample+filtlongMB<m>,<q>,<l>,<n>.fastq
.
When using any of the Filtlong keywords in a folder name, they must be followed by an underscore, followed by the keyword for the assembler.
Following keywords can be used to run the assembly with Flye:
flye
Default assembly, which includes one round of internal polishing the assembly with the ONT reads.
flyeX
Assembly with X
rounds of internal polishing. Setting X
to 0 disables polishing altogether.
flyehq
Assembly for high-quality ONT reads using Flye option --nano-hq
for ONT Guppy5+ in SUP mode, with one round of internal polishing.
flyehqX
High-quality assembly, with X
rounds of internal polishing. Setting X
to 0 disables polishing altogether.
Following keywords can be used to run the assembly with raven:
raven
Default assembly, which includes two rounds of internal polishing with racon using the ONT reads.
ravenX
Assembly with X
rounds of internal polishing with racon. Setting X
to 0 disables polishing altogether.
Following keywords can be used to run the assembly with miniasm:
miniasm
Default assembly. Miniasm does not do any polishing by itself.
unicycler
Unicycler does a hybrid assembly, i.e., both ONT and Illumina reads must be present in fastq-ont
and fastq-illumina
, respectively.
Following keywords can be used to polish an assembly using ONT reads:
racon
Polishing the assembly once.
raconX
Run racon polishing iteratively X
times.
medaka
Medaka polishes the assembly using the ONT reads, but also requires the name of
the Medaka model to be used, which depends on the flow cell and basecalling that were used for creating the reads.
The model name can either be set globally for all samples using the snakemake configuration option medaka_model
,
or by supplying a tab-separated file with two columns that maps sample names to medaka models using the snakemake configuration option map_medaka_model
.
Options are specified using snakemake's --config
parameter, for example:
snakemake /opt/software/ont-assembly-snake/Snakefile --cores 20 --config map_medaka_model=map_medaka.tsv
where map_medaka.tsv
contains, for example, the two columns:
sample1 r941_min_high_g330
sample2 r941_min_high_g351
polypolish
Polypolish polishes an assembly using Illumina reads, which must be located in the fastq-illumina
folder.
homopolish
Homopolish does reference-based polishing based on one ore more provided reference genomes in fasta format located in
references/NAME1.fa
, references/NAME2.fa
, etc., where NAME1
and NAME2
can be any string.
Snakemake will create output files ...+homopolish/output_NAME1.fa
, ...+homopolish/output_NAME1.fa
, etc., containing the polished assemblies.
When using homopolish, it must be the last keyword in the folder name.
proovframe
Proovframe does reference-based polishing based on one ore more provided reference proteomes in fasta format containing the amino acid sequences located in
references-protein/NAME1.faa
, references-protein/NAME2.faa
, etc., where NAME1
and NAME2
can be any string.
Snakemake will create output files ...+proovframe/output_NAME1.fa
, ...+proovframe/output_NAME1.fa
, etc., containing the polished assemblies.
When using proovframe, it must be the last keyword in the folder name.
This example contains one sample with ONT sequencing reads
For sample 1, the assembly should be done with flye (including the default single round of
polishing), followed by polishing the assembly with racon (twice), medaka, and eventually homopolish, which will use the Monkeypox genome in the file references/monkeypox.faa
.
In another assembly, we also want to filter the ONT reads of sample 1 to only include the highest quality reads up to a total of 500Mb
using Filtlong and apply the same assembly and polishing protocol.
We therefore create the folders and files as follows:
.
├── assemblies
│ ├── sample1+filtlongMB500_flye+racon2+medaka+homopolish
│ ├── sample1_flye+racon2+medaka+homopolish
├── fastq-ont
│ ├── sample1.fastq
├── references
│ └── monkeypox.fa
└── references-protein
└── monkeypox_protein.fa
We also want to set the minimum read length threshold for Filtlong to 500nt and use the medaka model r941_min_high_g351
for both samples.
Therefore, we run the workflow with:
snakemake -s /opt/software/ont-monkeypox/Snakefile --use-conda --cores 12 --config medaka_model=r941_min_high_g351 filtlong_min_read_length=500
Snakemake will recursively handle the dependencies for each assembly,
and create folders for all intermediate steps automatically.
Additionally, a symlink is created for each output assembly in the assemblies/
folder, so they can easily be used as input for score-assemblies.
For the above example, the folders will look like this after running the workflow:
.
├── assemblies
│ ├── sample1+filtlongMB500_flye
│ ├── sample1+filtlongMB500_flye.fa -> sample1+filtlongMB500_flye/output.fa
│ ├── sample1+filtlongMB500_flye+racon2
│ ├── sample1+filtlongMB500_flye+racon2.fa -> sample1+filtlongMB500_flye+racon2/output.fa
│ ├── sample1+filtlongMB500_flye+racon2+medaka
│ ├── sample1+filtlongMB500_flye+racon2+medaka.fa -> sample1+filtlongMB500_flye+racon2+medaka/output.fa
│ ├── sample1+filtlongMB500_flye+racon2+medaka+homopolish
│ ├── sample1+filtlongMB500_flye+racon2+medaka+homopolishEcoli.fa -> sample1+filtlongMB500_flye+racon2+medaka+homopolish/output_Ecoli.fa
│ ├── sample1_flye
│ ├── sample1_flye.fa -> sample1_flye/output.fa
│ ├── sample1_flye+racon2
│ ├── sample1_flye+racon2.fa -> sample1_flye+racon2/output.fa
│ ├── sample1_flye+racon2+medaka
│ ├── sample1_flye+racon2+medaka.fa -> sample1_flye+racon2+medaka/output.fa
│ ├── sample1_flye+racon2+medaka+homopolish
│ ├── sample1_flye+racon2+medaka+homopolishEcoli.fa -> sample1_flye+racon2+medaka+homopolish/output_Ecoli.fa
├── fastq-ont
│ ├── sample1.fastq
│ ├── sample1+filtlongMB500.fastq
├── references
│ └── monkeypox.fa
└── references-protein
└── monkeypox_protein.faa
(Not shown is the content of each subfolder in assemblies/
and some auxiliary files.)