mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 00:26:03 +00:00
Updating suggested changes
This commit is contained in:
parent
89dbb6c061
commit
7acd9cf7df
2 changed files with 16 additions and 1 deletions
|
@ -10,11 +10,18 @@ process {
|
|||
executor = 'local'
|
||||
}
|
||||
|
||||
sngularity {
|
||||
singularity {
|
||||
enabled = true
|
||||
autoMounts = true
|
||||
}
|
||||
|
||||
// To use docker instead of singularity, use nextflow run -profile munin,docker
|
||||
docker {
|
||||
enabled = false
|
||||
mountFlags = 'z'
|
||||
fixOwnership = true
|
||||
}
|
||||
|
||||
params {
|
||||
saveReference = true
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
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
|
||||
|
||||
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.
|
||||
|
|
Loading…
Reference in a new issue