forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiohpc_gen.config
executable file
·37 lines (33 loc) · 993 Bytes
/
biohpc_gen.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
37
//Profile config names for nf-core/configs
params {
config_profile_description = 'BioHPC Genomics (biohpc_gen) cluster profile provided by nf-core/configs'
config_profile_contact = 'Niklas Schandry (@nschan)'
config_profile_url = 'https://collab.dvb.bayern/display/LMUBioHPCGenomics/BioHPC+Genomics'
}
process {
resourceLimits = [
memory: 3.TB,
cpus: 80,
time: 14.d
]
executor = 'slurm'
queue = { task.memory <= 1536.GB ? (task.time > 2.d || task.memory > 384.GB ? 'biohpc_gen_production' : 'biohpc_gen_normal') : 'biohpc_gen_highmem' }
clusterOptions = '--clusters=biohpc_gen'
array = 25
}
executor {
$slurm {
queueStatInterval = '10 min'
pollInterval = '30 sec'
submitRateLimit = '25sec'
}
}
charliecloud {
enabled = true
writeFake = false
}
params {
params.max_time = 14.d
params.max_cpus = 80
params.max_memory = 3.TB
}