mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-11 04:23:10 +00:00
24 lines
555 B
Text
24 lines
555 B
Text
|
params {
|
||
|
config_profile_description = 'Van Andel Institute HPC profile provided by nf-core/configs.'
|
||
|
config_profile_contact = 'Nathan Spix (@njspix)'
|
||
|
config_profile_url = 'https://vanandelinstitute.sharepoint.com/sites/SC/SitePages/HPC3-High-Performance-Cluster-and-Cloud-Computing.aspx'
|
||
|
max_memory = 250.GB
|
||
|
max_cpus = 40
|
||
|
max_time = 640.h
|
||
|
}
|
||
|
|
||
|
process {
|
||
|
beforeScript = 'module load singularity'
|
||
|
executor = 'pbs'
|
||
|
queue = { task.time <= 48.h ? 'shortq' : 'longq' }
|
||
|
maxRetries = 2
|
||
|
}
|
||
|
|
||
|
singularity {
|
||
|
enabled = true
|
||
|
autoMounts = true
|
||
|
}
|
||
|
|
||
|
|
||
|
|