mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
23 lines
534 B
Text
23 lines
534 B
Text
/*
|
|
* ----------------------------------------------------------------------------
|
|
* Nextflow config file for use with Singularity on BINAC cluster in Tuebingen
|
|
* ----------------------------------------------------------------------------
|
|
* Defines basic usage limits and singularity image id.
|
|
*/
|
|
|
|
singularity {
|
|
enabled = true
|
|
}
|
|
|
|
process {
|
|
beforeScript = 'module load devel/singularity/3.0.1'
|
|
executor = 'pbs'
|
|
queue = 'short'
|
|
}
|
|
|
|
params {
|
|
igenomesIgnore = true
|
|
max_memory = 128.GB
|
|
max_cpus = 28
|
|
max_time = 48.h
|
|
}
|