KasperSkytte/snakemake_usearch
None
Overview
Latest release: v1.1.0, Last update: 2025-08-28
Linting: linting: passed, Formatting: formatting: passed
Deployment
Step 1: Install Snakemake and Snakedeploy
Snakemake and Snakedeploy are best installed via the Mamba package manager (a drop-in replacement for conda). If you have neither Conda nor Mamba, it is recommended to install Miniforge. More details regarding Mamba can be found here.
When using Mamba, run
mamba create -c conda-forge -c bioconda --name snakemake snakemake snakedeploy
to install both Snakemake and Snakedeploy in an isolated environment. For all following commands ensure that this environment is activated via
conda activate snakemake
Step 2: Deploy workflow
With Snakemake and Snakedeploy installed, the workflow can be deployed as follows. First, create an appropriate project working directory on your system and enter it:
mkdir -p path/to/project-workdir
cd path/to/project-workdir
In all following steps, we will assume that you are inside of that directory. Then run
snakedeploy deploy-workflow https://github.com/KasperSkytte/snakemake_usearch . --tag v1.1.0
Snakedeploy will create two folders, workflow
and config
. The former contains the deployment of the chosen workflow as a Snakemake module, the latter contains configuration files which will be modified in the next step in order to configure the workflow to your needs.
Step 3: Configure workflow
To configure the workflow, adapt config/config.yml
to your needs following the instructions below.
Step 4: Run workflow
The deployment method is controlled using the --software-deployment-method
(short --sdm
) argument.
To run the workflow with automatic deployment of all required software via conda
/mamba
, use
snakemake --cores all --sdm conda
To run the workflow using apptainer
/singularity
, use
snakemake --cores all --sdm apptainer
To run the workflow using a combination of conda
and apptainer
/singularity
for software deployment, use
snakemake --cores all --sdm conda apptainer
Snakemake will automatically detect the main Snakefile
in the workflow
subfolder and execute the workflow module that has been defined by the deployment in step 2.
For further options such as cluster and cloud execution, see the docs.
Step 5: Generate report
After finalizing your data analysis, you can automatically generate an interactive visual HTML report for inspection of results together with parameters and code inside of the browser using
snakemake --report report.zip
Configuration
The following section is imported from the workflow’s config/README.md
.
Configuration
The configuration file config.yaml
is used to set various options used throughout the workflow.
Option |
Default value |
Description |
---|---|---|
|
|
The input folder is expected to contain a subfolder for each sampleID/barcode, in which all fastq files will be concatenated, and the subfolder names used as sample IDs downstream. For nanopore this is usually the “fastq_pass” folder with demultiplexed reads. |
|
|
Folder for the results. |
|
|
Folder for temporary files, which are deleted by default after a succesful run. |
|
|
Folder for logs for each rule. |
|
|
Path to the taxonomic reference database used to classify the ASVs/zOTUs in SINTAX format. |
|
|
Arguments for the filtlong command used for pre-filtering. To skip filtering altogether set to |
|
|
Max number of threads to use for any individual rule. |
|
|
Separator used for the |
|
|
Primer pair used. Passed on as-is to the |
|
|
Minimum abundance of each read. This is only to speed up ASV/zOTU generation, it will not impact abundance estimation. |
|
|
Increase this proportionally with platform error-rate to avoid false-positive de-novo ASVs/zOTUs. Never set to anything lower than |
|
|
Whether to also produce a rarefied abundance table or not. |
|
|
Rarefy abundance table to an equal sample size. Both a rarefied and an unrarefied abundance table will be generated. |
Have a look in the .test
directory for minimal example files.
Linting and formatting
Linting results
All tests passed!
Formatting results
All tests passed!