2019-01-04 15:33:54 +00:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
|
|
|
config_profile_name = 'UPPMAX-DEVEL'
|
|
|
|
config_profile_description = 'UPPMAX Development Cluster Profile provided by nf-core/configs.'
|
|
|
|
config_profile_contact = 'Phil Ewels (@ewels)'
|
|
|
|
config_profile_url = 'https://www.uppmax.uu.se/'
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Additional description:
|
2018-11-23 15:56:34 +00:00
|
|
|
* To be applied after main UPPMAX config, overwrites config and
|
|
|
|
* submits jobs to the `devcore` queue, which has much faster
|
|
|
|
* queue times. All jobs are limited to 1 hour to be eligible
|
|
|
|
* for this queue and only one job allowed at a time.
|
|
|
|
*/
|
|
|
|
|
2019-01-04 15:33:54 +00:00
|
|
|
|
|
|
|
|
2018-11-23 15:56:34 +00:00
|
|
|
executor {
|
|
|
|
name = 'slurm'
|
|
|
|
queueSize = 1
|
|
|
|
}
|
|
|
|
process {
|
|
|
|
queue = 'devel'
|
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
|
|
|
// Max resources to be requested by a devel job
|
|
|
|
max_memory = 120.GB
|
|
|
|
max_cpus = 16
|
|
|
|
max_time = 1.h
|
|
|
|
}
|