-
Notifications
You must be signed in to change notification settings - Fork 1
CeMM Users
Stephan Reichl edited this page Nov 6, 2024
·
5 revisions
We created a Snakemake profile and job conductor script for the HPC at CeMM. You can find the repository including documentation and instructions here cemm.slurm.sm.
If you have been a MrBiomics user for a long time, here are the steps to migrate your setup to Snakemake 8.
- Install the latest Snakemake version (tested
v8.20.1
) in a newconda
environment.conda create -c conda-forge -c bioconda -n snakemake8_20_1 snakemake
- Install the SLURM executor plugin (tested
v0.10.0
).conda activate snakemake8_20_1 conda install snakemake-executor-plugin-slurm
- Pull the latest changes from cemm.slurm.sm.
cd cemm.slurm.sm git pull
- If you have local clones of MrBiomics modules pull the latest changes from GitHub, while stashing your modifications.
cd {module} git pull --autostash --rebase
Tip
Make sure conda (and conda-libmamba-solver) are up-to-date.
conda activate base
conda update conda
conda update conda-libmamba-solver