mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-13 05:03:10 +00:00
20 lines
406 B
Text
20 lines
406 B
Text
|
/*
|
||
|
* --------------------------------------------------------------------------------
|
||
|
* Nextflow config file for use with Singularity on University of Zurich Cluster
|
||
|
* --------------------------------------------------------------------------------
|
||
|
*/
|
||
|
|
||
|
singularity {
|
||
|
enabled = true
|
||
|
}
|
||
|
|
||
|
process {
|
||
|
executor = 'slurm'
|
||
|
}
|
||
|
|
||
|
params {
|
||
|
max_memory = 1800.GB
|
||
|
max_cpus = 112
|
||
|
max_time = 168.h
|
||
|
}
|