mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-25 17:29:55 +00:00
21 lines
483 B
Text
21 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
|
||
|
}
|