2018-11-23 15:56:34 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* Nextflow config file for use with Singularity on BINAC cluster in Tuebingen
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* Defines basic usage limits and singularity image id.
|
|
|
|
*/
|
|
|
|
|
|
|
|
singularity {
|
2018-11-26 22:47:36 +00:00
|
|
|
enabled = true
|
2018-11-23 15:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
2018-11-26 22:47:36 +00:00
|
|
|
beforeScript = 'module load devel/singularity/3.0.1'
|
|
|
|
executor = 'pbs'
|
|
|
|
queue = 'short'
|
2018-11-23 15:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
2018-11-26 16:32:06 +00:00
|
|
|
igenomesIgnore = true
|
2018-11-23 15:56:34 +00:00
|
|
|
max_memory = 128.GB
|
|
|
|
max_cpus = 28
|
|
|
|
max_time = 48.h
|
|
|
|
}
|