2021-09-27 14:05:19 +00:00
|
|
|
// Profile config names for nf-core/configs
|
|
|
|
params {
|
|
|
|
config_profile_description = 'Hasta, a local cluster setup at Clinical Genomics, Stockholm.'
|
|
|
|
config_profile_contact = 'Clinical Genomics, Stockholm'
|
|
|
|
config_profile_url = 'https://github.com/Clinical-Genomics'
|
|
|
|
priority = null
|
|
|
|
clusterOptions = null
|
|
|
|
schema_ignore_params = "priority,clusterOptions"
|
|
|
|
}
|
|
|
|
|
|
|
|
singularity {
|
|
|
|
enabled = true
|
2022-05-30 09:07:24 +00:00
|
|
|
envWhitelist = ['_JAVA_OPTIONS']
|
2021-09-27 14:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
|
|
|
max_memory = 180.GB
|
|
|
|
max_cpus = 36
|
2021-09-27 14:05:32 +00:00
|
|
|
max_time = 336.h
|
2021-09-27 14:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
executor = 'slurm'
|
2021-09-28 08:38:15 +00:00
|
|
|
clusterOptions = { "-A $params.priority ${params.clusterOptions ?: ''}" }
|
2021-09-27 14:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
profiles {
|
|
|
|
dev_prio {
|
|
|
|
params {
|
|
|
|
priority = 'development'
|
|
|
|
clusterOptions = "--qos=low"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
prod_prio {
|
|
|
|
params {
|
|
|
|
priority = 'production'
|
|
|
|
clusterOptions = "--qos=low"
|
|
|
|
}
|
|
|
|
}
|
2021-09-27 14:25:02 +00:00
|
|
|
}
|