-
Notifications
You must be signed in to change notification settings - Fork 277
/
jax.config
30 lines (29 loc) · 896 Bytes
/
jax.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
params {
config_profile_description = 'The Jackson Laboratory Sumner HPC profile provided by nf-core/configs.'
config_profile_contact = 'Bill Flynn (@flynnb)'
config_profile_url = 'https://jacksonlaboratory.sharepoint.com/sites/ResearchIT/SitePages/Welcome-to-Sumner.aspx'
singularity_cache_dir = '/flashscratch/singularity_cache_nfcore'
}
executor.$slurm.queueSize = 250
process {
resourceLimits = [
memory: 320.GB,
cpus: 32,
time: 336.h
]
executor = "slurm"
queue = "compute"
clusterOptions = { task.time < 72.h ? '-q batch' : '-q long' }
module = "slurm"
beforeScript = 'module load singularity'
}
singularity {
enabled = true
autoMounts = true
cacheDir = params.singularity_cache_dir
}
params {
max_memory = 320.GB
max_cpus = 32
max_time = 336.h
}