mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
24 lines
601 B
Text
24 lines
601 B
Text
/*
|
|
* -------------------------------------------------
|
|
* Nextflow config file for UPPMAX (milou / irma)
|
|
* -------------------------------------------------
|
|
* 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.
|
|
*/
|
|
|
|
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
|
|
}
|