mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
24 lines
647 B
Text
24 lines
647 B
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_description = 'University of Texas at Dallas HPC cluster profile provided by nf-core/configs'
|
|
config_profile_contact = 'Edmund Miller(@emiller88)'
|
|
config_profile_url = 'http://docs.oithpc.utdallas.edu/'
|
|
}
|
|
|
|
singularity {
|
|
enabled = true
|
|
envWhitelist='SINGULARITY_BINDPATH'
|
|
autoMounts = true
|
|
}
|
|
|
|
process {
|
|
beforeScript = 'module load singularity/3.2.1'
|
|
executor = 'slurm'
|
|
queue = { task.memory >= 32.GB && task.cpu <= 12 ? 'Kim': task.memory <= 24.GB && task.cpu <= 8 ? 'smallmem' : 'genomics' }
|
|
}
|
|
|
|
params {
|
|
max_memory = 128.GB
|
|
max_cpus = 16
|
|
max_time = 96.h
|
|
}
|