mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 16:29:55 +00:00
13df59bfaf
reasons: * the kernel running on the compute nodes does not support overlayfs und thus containers downloaded from public registries won't run because they lack the /lustre mountpoint * building containers manually using the Singularity file would work, however nf-core pipelines will stop providing these files in future releases
24 lines
546 B
Text
24 lines
546 B
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_name = 'MENDEL'
|
|
config_profile_description = 'GMI MENDEL cluster profile provided by nf-core/configs'
|
|
config_profile_contact = 'Patrick Hüther (@phue)'
|
|
config_profile_url = 'http://www.gmi.oeaw.ac.at/'
|
|
}
|
|
|
|
manifest {
|
|
nextflowVersion = '>=19.01.0'
|
|
}
|
|
|
|
process {
|
|
beforeScript = 'module load Miniconda3/4.6.7'
|
|
executor = 'pbspro'
|
|
clusterOptions = { "-P $params.project" }
|
|
}
|
|
|
|
params {
|
|
max_cpus = 32
|
|
max_memory = 128.GB
|
|
max_time = 192.h
|
|
igenomesIgnore = true
|
|
}
|