From c2c2410a251575fb0e4d0b3be97cc46eeb7af309 Mon Sep 17 00:00:00 2001 From: John Huddleston Date: Wed, 20 Mar 2024 16:08:00 -0700 Subject: [PATCH] Pin Snakemake to a known working version Try to future-proof the installation instructions a bit by pinning Snakemake to a version that should continue to work in the future. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 13e7ba4..df4ff32 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Create and activate a Conda environment for Snakemake. You will use this environment to run the workflow. ```bash -conda create --yes -c conda-forge -c bioconda -n snakemake snakemake +conda create --yes -c conda-forge -c bioconda -n snakemake snakemake=8.9.0 conda activate snakemake ```