2020-12-18 10:21:26 +00:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
|
2022-02-11 11:02:40 +00:00
|
|
|
params {
|
|
|
|
// Config Params
|
|
|
|
config_profile_description = 'Imperial College London - HPC Profile -- provided by nf-core/configs.'
|
|
|
|
config_profile_contact = 'Combiz Khozoie (c.khozoie@imperial.ac.uk)'
|
|
|
|
config_profile_url = 'https://www.imperial.ac.uk/admin-services/ict/self-service/research-support/rcs/'
|
2020-12-18 10:21:26 +00:00
|
|
|
|
2022-02-11 11:02:40 +00:00
|
|
|
// Resources
|
|
|
|
max_memory = 480.GB
|
|
|
|
max_cpus = 40
|
|
|
|
max_time = 1000.h
|
|
|
|
}
|
2022-02-10 23:46:14 +00:00
|
|
|
|
2022-02-11 11:02:40 +00:00
|
|
|
profiles {
|
|
|
|
imperial {
|
2022-02-10 23:46:14 +00:00
|
|
|
process {
|
|
|
|
executor = 'pbspro'
|
|
|
|
|
|
|
|
// Process-specific resource requirements
|
|
|
|
withLabel:process_low {
|
|
|
|
// TARGET QUEUE: throughput
|
|
|
|
cpus = { 2 * task.attempt }
|
|
|
|
memory = { 12.GB * task.attempt }
|
|
|
|
time = { 4.h * task.attempt }
|
|
|
|
}
|
|
|
|
withLabel:process_medium {
|
|
|
|
// TARGET QUEUE: throughput
|
|
|
|
cpus = 8
|
|
|
|
memory = { 32.GB * task.attempt }
|
|
|
|
time = { 8.h * task.attempt }
|
|
|
|
}
|
|
|
|
withLabel:process_high {
|
|
|
|
// TARGET QUEUE: general
|
|
|
|
cpus = 32
|
|
|
|
memory = { 62.GB * task.attempt }
|
|
|
|
time = { 16.h * task.attempt }
|
|
|
|
}
|
|
|
|
withLabel:process_long {
|
|
|
|
// TARGET QUEUE: long
|
|
|
|
cpus = 8
|
|
|
|
memory = 96.GB
|
|
|
|
time = { 72.h * task.attempt }
|
|
|
|
}
|
|
|
|
withLabel:process_high_memory {
|
|
|
|
// TARGET QUEUE: large memory
|
|
|
|
cpus = { 10 * task.attempt }
|
|
|
|
memory = { 120.GB * task.attempt }
|
|
|
|
time = { 12.h * task.attempt }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
medbio {
|
|
|
|
process {
|
|
|
|
executor = 'pbspro'
|
|
|
|
|
|
|
|
queue = 'pqmedbio-tput'
|
|
|
|
|
2022-02-11 00:26:45 +00:00
|
|
|
//queue = 'med-bio' //!! this is an alias and shouldn't be used
|
2022-02-10 23:46:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-18 10:21:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
executor {
|
2022-02-10 23:02:47 +00:00
|
|
|
$pbspro {
|
|
|
|
queueSize = 50
|
|
|
|
}
|
2020-12-18 15:34:56 +00:00
|
|
|
|
2022-02-10 23:02:47 +00:00
|
|
|
$local {
|
|
|
|
cpus = 2
|
|
|
|
queueSize = 1
|
|
|
|
memory = '6 GB'
|
|
|
|
}
|
2020-12-18 10:21:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
singularity {
|
2022-02-10 23:02:47 +00:00
|
|
|
enabled = true
|
|
|
|
autoMounts = true
|
|
|
|
runOptions = "-B /rds/,/rds/general/user/$USER/ephemeral/tmp/:/tmp,/rds/general/user/$USER/ephemeral/tmp/:/var/tmp"
|
2020-12-18 10:21:26 +00:00
|
|
|
}
|