From 6d356cc9182d6f6ba34c655c9acbc39ba2efbdd0 Mon Sep 17 00:00:00 2001 From: phue Date: Fri, 5 Jun 2020 12:07:26 +0200 Subject: [PATCH] CBE: don't load singularity module singularity is now installed from CentOS repos, the environment module will be removed --- conf/cbe.config | 1 - docs/cbe.md | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/conf/cbe.config b/conf/cbe.config index 5888202..0e9b43e 100755 --- a/conf/cbe.config +++ b/conf/cbe.config @@ -7,7 +7,6 @@ params { process { executor = 'slurm' - module = 'singularity/3.4.1' queue = { task.memory <= 170.GB ? 'c' : 'm' } clusterOptions = { task.time <= 8.h ? '--qos short': task.time <= 48.h ? '--qos medium' : '--qos long' } } diff --git a/docs/cbe.md b/docs/cbe.md index 8d597a0..aa6c60d 100644 --- a/docs/cbe.md +++ b/docs/cbe.md @@ -4,13 +4,12 @@ All nf-core pipelines have been successfully configured for use on the CLIP BATC To use, run the pipeline with `-profile cbe`. This will download and launch the [`cbe.config`](../conf/cbe.config) which has been pre-configured with a setup suitable for the CBE cluster. Using this profile, a docker image containing all of the required software will be downloaded, and converted to a Singularity image before execution of the pipeline. -Before running the pipeline you will need to load Nextflow and Singularity using the environment module system on CBE. You can do this by issuing the commands below: +Before running the pipeline you will need to load Nextflow using the environment module system on CBE. You can do this by issuing the commands below: ```bash -## Load Nextflow and Singularity environment modules +## Load Nextflow environment module module purge module load nextflow/19.04.0 -module load singularity/3.2.1 ``` A local copy of the [AWS-iGenomes](https://registry.opendata.aws/aws-igenomes/) resource has been made available on CBE so you should be able to run the pipeline against any reference available in the `igenomes.config` specific to the nf-core pipeline. You can do this by simply using the `--genome ` parameter.