mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-13 05:03:10 +00:00
22 lines
460 B
Text
22 lines
460 B
Text
|
/*
|
||
|
* -------------------------------------------------------------
|
||
|
* Nextflow config file for use with Singularity on CFC at QBIC
|
||
|
* -------------------------------------------------------------
|
||
|
* Defines basic usage limits and singularity image id.
|
||
|
*/
|
||
|
|
||
|
singularity {
|
||
|
enabled = true
|
||
|
}
|
||
|
|
||
|
process {
|
||
|
beforeScript = 'module load qbic/singularity_slurm/3.0.1'
|
||
|
executor = 'slurm'
|
||
|
}
|
||
|
|
||
|
params {
|
||
|
max_memory = 60.GB
|
||
|
max_cpus = 24
|
||
|
max_time = 140.h
|
||
|
}
|