forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbluebear.config
39 lines (34 loc) · 1.03 KB
/
bluebear.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
params {
// Profile config
config_profile_description = 'BlueBEAR cluster profile'
config_profile_contact = 'Alex Lyttle (@alexlyttle)'
config_profile_url = 'https://docs.bear.bham.ac.uk/'
// Maximum resources available
max_memory = 512.GB
max_cpus = 112
max_time = 10.d
}
// Clean up work directory after successful run
cleanup = true
// Enable Singularity (via Apptainer) for all processes
// Singularity engine prefered so pipeline pulls pre-built containers rather than building them
// (see https://nf-co.re/docs/usage/installation#pipeline-software)
singularity {
enabled = true
autoMount = true
}
process {
resourceLimits = [
memory: 512.GB,
cpus: 112,
time: 10.d
]
executor = 'slurm'
clusterOptions = {
"--account ${System.getenv("SLURM_JOB_ACCOUNT")} " + "--qos ${task.time <= 10.m ? 'bbshort' : 'bbdefault'}"
}
}
executor {
queueSize = 60
submitRateLimit = '1sec'
}