1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 14:02:05 +00:00
nf-configs/conf/shh.config
2019-01-03 16:02:07 +01:00

28 lines
665 B
Text

/*
* -------------------------------------------------------------
* Nextflow config file for use with Singularity at SHH Clusters
* -------------------------------------------------------------
* Defines basic usage limits and singularity image id.
*/
singularity {
enabled = true
cacheDir = "/projects1/users/$USER/nextflow/nf_cache/singularity/"
}
/*
* To be improved by process specific resource requests
* By default, take the medium queue, smaller processes might just go to short (e.g. multiqc or similar things)
*/
process {
executor = 'slurm'
queue = 'medium'
}
params {
max_memory = 734.GB
max_cpus = 64
max_time = 48.h
}