2020-03-09 21:18:41 +00:00
|
|
|
//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 {
|
2020-09-14 01:26:45 +00:00
|
|
|
beforeScript = 'module load singularity/3.2.1'
|
2020-03-09 21:18:41 +00:00
|
|
|
executor = 'slurm'
|
2020-09-14 01:45:34 +00:00
|
|
|
queue = { task.memory >= 32.GB && task.cpu <= 12 ? 'Kim': task.memory <= 24.GB && task.cpu <= 8 ? 'smallmem' : 'genomics' }
|
2020-03-09 21:18:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
2020-09-14 01:26:45 +00:00
|
|
|
max_memory = 128.GB
|
2020-03-09 21:18:41 +00:00
|
|
|
max_cpus = 16
|
2020-09-14 01:26:45 +00:00
|
|
|
max_time = 96.h
|
2020-03-09 21:18:41 +00:00
|
|
|
}
|