mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-13 05:03:10 +00:00
22 lines
657 B
Text
22 lines
657 B
Text
|
params {
|
||
|
config_profile_description = 'The Jackson Laboratory Sumner HPC profile provided by nf-core/configs.'
|
||
|
config_profile_contact = 'Asaf Peer (@peera)'
|
||
|
config_profile_url = 'https://jacksonlaboratory.sharepoint.com/sites/ResearchIT/SitePages/Welcome-to-Sumner.aspx'
|
||
|
}
|
||
|
|
||
|
executor.$slurm.queueSize = 250
|
||
|
process {
|
||
|
executor = "slurm"
|
||
|
queue = "compute"
|
||
|
clusterOptions = {task.time < 72.h ? '-q batch' : '-q long'}
|
||
|
module = "slurm"
|
||
|
beforeScript = 'module load singularity'
|
||
|
}
|
||
|
singularity.enabled = true
|
||
|
singularity.autoMounts = true
|
||
|
params {
|
||
|
max_memory = 768.GB
|
||
|
max_cpus = 70
|
||
|
max_time = 336.h
|
||
|
}
|