1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 06:02:03 +00:00
nf-configs/docs/genouest.md
2019-10-16 18:15:04 +02:00

1.3 KiB

nf-core/configs: GenOuest Configuration

All nf-core pipelines have been successfully configured for use on the GenOuest cluster.

To use, run the pipeline with -profile genouest. This will download and launch the genouest.config which has been pre-configured with a setup suitable for the GenOuest 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.

Running the workflow on the GenOuest cluster

Nextflow is installed on the GenOuest cluster. You need to activate it like this:

source /local/env/envnextflow-19.07.0.sh

Nextflow manages each process as a separate job that is submitted to the cluster by using the sbatch command. Nextflow shouldn't run directly on the submission node but on a compute node. Run nextflow from a compute node:

# Login to a compute node
srun --pty bash

# Load the dependencies if not done before
source /local/env/envnextflow-19.07.0.sh

# Run a downloaded/git-cloned nextflow workflow from
nextflow run \\
/path/to/nf-core/workflow \\
-resume
-profile genouest \\
--email my-email@example.org  \\
-c my-specific.config
...

# Or use the nf-core client
nextflow run nf-core/rnaseq ...