mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-13 05:03:10 +00:00
39 lines
No EOL
940 B
Text
39 lines
No EOL
940 B
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_description = 'Swedish UPPMAX cluster profile provided by nf-core/configs.'
|
|
config_profile_contact = 'Phil Ewels (@ewels)'
|
|
config_profile_url = 'https://www.uppmax.uu.se/'
|
|
}
|
|
|
|
singularity {
|
|
enabled = true
|
|
cacheDir = '/sw/data/uppnex/ToolBox/nf-core'
|
|
}
|
|
|
|
process {
|
|
executor = 'slurm'
|
|
clusterOptions = { "-A $params.project ${params.clusterOptions ?: ''}" }
|
|
}
|
|
|
|
params {
|
|
saveReference = true
|
|
|
|
max_memory = 128.GB
|
|
max_cpus = 16
|
|
max_time = 240.h
|
|
// illumina iGenomes reference file paths on UPPMAX
|
|
igenomes_base = '/sw/data/uppnex/igenomes/'
|
|
}
|
|
|
|
profiles {
|
|
devel {
|
|
params {
|
|
config_profile_description = 'Testing & development profile for UPPMAX, provided by nf-core/configs.'
|
|
// Max resources to be requested by a devel job
|
|
max_memory = 120.GB
|
|
max_time = 1.h
|
|
}
|
|
executor.queueSize = 1
|
|
process.queue = 'devel'
|
|
}
|
|
} |