forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbih.config
36 lines (32 loc) · 881 Bytes
/
bih.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
params {
config_profile_name = 'bih'
config_profile_description = 'Berlin Institute of Health HPC cluster profile provided by nf-core/configs.'
config_profile_contact = 'BIH-HPC IT Team <[email protected]>'
config_profile_url = 'https://www.hpc.bihealth.org/'
max_memory = 340.GB
max_cpus = 64
max_time = 7.d
scratch = null
}
process {
resourceLimits = [
memory: 340.GB,
cpus: 64,
time: 7.d
]
executor = 'slurm'
maxRetries = 2
clusterOptions = "--export=ALL"
}
apptainer {
enabled = true
autoMounts = true
cacheDir = "${params.scratch}/apptainer_img_${USER}"
}
cleanup = true
workDir = "${params.scratch}/work_${USER}"
profiles {
debug {
cleanup = false
}
}