Using workflows
Basic usage
To get started with a workflow from the catalog:
- Clone the repository or download the specific workflow directory.
git clone https://github.com/<user>/<workflow>
-
Review the documentation provided with the workflow to understand its requirements and usage.
-
Configure the workflow by editing the
config.yml
files as needed. -
Create an environment with access to Snakemake. It is recommended to use
mamba
.
mamba create -n <env-name> -c <channels> snakemake
mamba activate <env-name>
- Execute the workflow using Snakemake.
cd <workflow-dir>
snakemake --cores 2
Dry-run
Use the --dry-run
option first to check if all inputs are found.
For more detailed instructions, please refer to the individual documentation for each workflow.
Deployment options
To be added.