forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathengaging.config
More file actions
24 lines (23 loc) · 792 Bytes
/
engaging.config
File metadata and controls
24 lines (23 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
params {
config_profile_description = 'MIT Engaging HPC cluster profile.'
config_profile_contact = 'Phil Palmer (@PhilPalmer)'
}
process {
// Launch intensive assembly processes on newnodes partition with max resources
withName: SPADES {
clusterOptions = '-p newnodes'
cpus = 20
memory = 250.GB
time = 12.h
errorStrategy = { task.exitStatus in [143, 137, 1] ? 'retry' : 'finish' }
maxRetries = 3
}
withName: MEGAHIT {
clusterOptions = '-p newnodes'
cpus = 20
memory = 250.GB
time = 12.h
errorStrategy = { task.exitStatus in [143, 137, 104, 134, 139, 250] ? 'retry' : 'finish' }
maxRetries = 3
}
}