mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_description = 'University of Edinburgh (eddie) cluster profile provided by nf-core/configs.'
|
|
config_profile_contact = 'Alison Meynert (@ameynert)'
|
|
config_profile_url = 'https://www.ed.ac.uk/information-services/research-support/research-computing/ecdf/high-performance-computing'
|
|
}
|
|
|
|
conda {
|
|
createTimeout = '2h'
|
|
}
|
|
|
|
singularity {
|
|
enabled = true
|
|
}
|
|
|
|
process {
|
|
executor = 'sge'
|
|
|
|
# memory environment & options
|
|
clusterOptions = {"-l h_vmem=${task.memory.bytes/task.cpus}"}
|
|
penv = 'sharedmem'
|
|
|
|
# common SGE error statuses
|
|
errorStrategy = {task.exitStatus in [143,137,104,134,139] ? 'retry' : 'finish'}
|
|
maxErrors = '-1'
|
|
maxRetries = 3
|
|
|
|
# load module script for Anaconda and Singularity
|
|
beforeScript = { '. /etc/profile.d/modules.sh; sleep 2; ' }
|
|
module = 'anaconda/5.3.1'
|
|
module = 'singularity/3.5.3'
|
|
}
|
|
|
|
params {
|
|
saveReference = true
|
|
|
|
// iGenomes reference base
|
|
igenomes_base = '/exports/igmm/eddie/NextGenResources/igenomes/'
|
|
|
|
max_memory = 384.GB
|
|
max_cpus = 32
|
|
max_time = 240.h
|
|
}
|