1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 08:29:54 +00:00

Updating suggested changes

This commit is contained in:
Martin Proks 2019-01-11 15:28:10 +01:00
parent 89dbb6c061
commit 7acd9cf7df
No known key found for this signature in database
GPG key ID: 5CFEC83B0D09B968
2 changed files with 16 additions and 1 deletions

View file

@ -10,11 +10,18 @@ process {
executor = 'local' executor = 'local'
} }
sngularity { singularity {
enabled = true enabled = true
autoMounts = true autoMounts = true
} }
// To use docker instead of singularity, use nextflow run -profile munin,docker
docker {
enabled = false
mountFlags = 'z'
fixOwnership = true
}
params { params {
saveReference = true saveReference = true

View file

@ -4,6 +4,14 @@ All nf-core pipelines have been successfully configured for use on the MUNIN clu
To use, run the pipeline with `-profile munin`. This will download and launch the [`munin.config`](../conf/munin.config) which has been pre-configured with a setup suitable for the MUNIN cluster. Using this profile, Nextflow will download singularity image with all of the required software before execution of the pipeline. To use, run the pipeline with `-profile munin`. This will download and launch the [`munin.config`](../conf/munin.config) which has been pre-configured with a setup suitable for the MUNIN cluster. Using this profile, Nextflow will download singularity image with all of the required software before execution of the pipeline.
Example: `nextflow run -profile munin`
## Docker
It is also possible to execute pipeline using Docker.
Example: `nextflow run -profile munin,docker`
## Below are non-mandatory information on iGenomes specific configuration ## Below are non-mandatory information on iGenomes specific configuration
A local copy of the iGenomes resource has been made available on MUNIN cluster so you should be able to run the pipeline against any reference available in the `igenomes.config` specific to the nf-core pipeline. A local copy of the iGenomes resource has been made available on MUNIN cluster so you should be able to run the pipeline against any reference available in the `igenomes.config` specific to the nf-core pipeline.