2021-03-21 10:49:11 +00:00
|
|
|
params {
|
|
|
|
config_profile_description = 'The Jackson Laboratory Sumner HPC profile provided by nf-core/configs.'
|
2021-05-19 17:48:49 +00:00
|
|
|
config_profile_contact = 'Bill Flynn (@flynnb)'
|
2021-03-21 10:49:11 +00:00
|
|
|
config_profile_url = 'https://jacksonlaboratory.sharepoint.com/sites/ResearchIT/SitePages/Welcome-to-Sumner.aspx'
|
2021-03-24 15:25:47 +00:00
|
|
|
singularity_cache_dir = '/fastscratch/singularity_cache_nfcore'
|
2021-03-21 10:49:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
executor.$slurm.queueSize = 250
|
|
|
|
process {
|
|
|
|
executor = "slurm"
|
|
|
|
queue = "compute"
|
|
|
|
clusterOptions = {task.time < 72.h ? '-q batch' : '-q long'}
|
|
|
|
module = "slurm"
|
|
|
|
beforeScript = 'module load singularity'
|
|
|
|
}
|
2021-03-24 15:25:47 +00:00
|
|
|
singularity{
|
|
|
|
enabled = true
|
|
|
|
autoMounts = true
|
|
|
|
cacheDir = params.singularity_cache_dir
|
|
|
|
}
|
2021-03-21 10:49:11 +00:00
|
|
|
params {
|
2021-04-12 20:00:34 +00:00
|
|
|
max_memory = 320.GB
|
|
|
|
max_cpus = 32
|
2021-03-21 10:49:11 +00:00
|
|
|
max_time = 336.h
|
|
|
|
}
|