-
Notifications
You must be signed in to change notification settings - Fork 277
/
hasta.config
71 lines (63 loc) · 1.63 KB
/
hasta.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// 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"
validationSchemaIgnoreParams = "priority,clusterOptions,schema_ignore_params"
}
singularity {
enabled = true
envWhitelist = ['_JAVA_OPTIONS']
}
params {
max_memory = 180.GB
max_cpus = 36
max_time = 336.h
}
process {
resourceLimits = [
memory: 180.GB,
cpus: 36,
time: 336.h
]
clusterOptions = { "-A ${params.priority} ${params.clusterOptions ?: ''}" }
}
executor {
name = 'slurm'
pollInterval = '2 min'
queueStatInterval = '5 min'
submitRateLimit = '2 sec'
}
profiles {
stub_prio {
params {
priority = 'development'
clusterOptions = "--qos=low"
max_memory = 6.GB
max_cpus = 1
max_time = 1.h
}
process {
resourceLimits = [
memory: 6.GB,
cpus: 1,
time: 1.h
]
}
}
dev_prio {
params {
priority = 'development'
clusterOptions = "--qos=low"
}
}
prod_prio {
params {
priority = 'production'
clusterOptions = "--qos=low"
}
}
}