forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapollo.config
39 lines (34 loc) · 933 Bytes
/
apollo.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 {
config_profile_name = "apollo"
config_profile_description = "COH Apollo cluster profile provided by nf-core/configs."
config_profile_contact = "Denis O'Meally (@drejom) or HPRCC Helpdesk ([email protected])"
config_profile_url = 'https://www.cityofhope.org/ Intranet http://hprcc.coh.org/'
max_memory = 1500.GB
max_cpus = 72
max_time = 500.h
igenomes_base = '/ref_genome/igenomes'
}
process {
resourceLimits = [
memory: 1500.GB,
cpus: 72,
time: 500.h
]
executor = 'slurm'
queue = 'all'
beforeScript = 'module load singularity'
}
singularity {
enabled = true
libraryDir = '/opt/singularity-images/nextflow'
}
executor {
name = 'slurm'
queueSize = 1000
}
cleanup = true
profiles {
debug {
cleanup = false
}
}