mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
20 lines
483 B
Text
20 lines
483 B
Text
/*
|
|
* --------------------------------------------------------------------------------------
|
|
* Nextflow config file for the MENDEL cluster at the Gregor Mendel Institute in Vienna
|
|
* -------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
singularity {
|
|
enabled = true
|
|
}
|
|
|
|
process {
|
|
beforeScript = 'module load Singularity'
|
|
executor = 'pbs'
|
|
clusterOptions = { "-P $params.project" }
|
|
}
|
|
|
|
params {
|
|
max_time = 192.h
|
|
igenomesIgnore = true
|
|
}
|