1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 14:02:05 +00:00
nf-configs/conf/munin.config
Maxime Garcia 68c709432f
Apply suggestions from code review
Co-Authored-By: Phil Ewels <phil.ewels@scilifelab.se>
2019-11-26 14:17:32 +01:00

33 lines
745 B
Text

// Profile config names for nf-core/configs
params {
// Specific nf-core/configs params
config_profile_contact = 'Szilveszter Juhos (@szilvajuhos)'
config_profile_description = 'MUNIN profile provided by nf-core/configs.'
config_profile_url = 'https://ki.se/forskning/barntumorbanken'
// Local AWS iGenomes reference file paths on munin
igenomes_base = '/data1/references/igenomes/'
// General cpus/memory/time requirements
max_cpus = 46
max_memory = 752.GB
max_time = 72.h
}
process {
executor = 'local'
maxForks = 46
}
singularity {
enabled = true
cacheDir = '/data1/containers/'
}
// To use docker, use nextflow run -profile munin,docker
docker {
enabled = false
mountFlags = 'z'
fixOwnership = true
}