1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 06:02:03 +00:00
nf-configs/conf/munin.config

46 lines
946 B
Text
Raw Normal View History

// Profile config names for nf-core/configs
2019-01-09 16:27:55 +00:00
params {
// Specific nf-core/configs params
2021-05-19 18:46:52 +00:00
config_profile_contact = 'Maxime Garcia (@maxulysse)'
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
2019-01-09 16:27:55 +00:00
}
process {
executor = 'local'
2019-08-07 10:26:51 +00:00
maxForks = 46
2019-01-09 16:27:55 +00:00
}
2022-03-15 15:29:19 +00:00
process {
withName:Mutect2 {
time = { check_max( 48.h * task.attempt, 'time' ) }
maxForks = 23
}
}
2019-01-11 14:28:10 +00:00
singularity {
2022-02-14 12:11:46 +00:00
cacheDir = '/data1/containers/'
enabled = true
runOptions = "--bind /media/BTB_2021_01"
2019-01-11 13:37:12 +00:00
}
// To use docker, use nextflow run -profile munin,docker
2021-05-19 18:46:52 +00:00
profiles {
docker {
docker {
enabled = false
mountFlags = 'z'
fixOwnership = true
}
2021-05-20 07:37:48 +00:00
}
2019-11-22 12:55:08 +00:00
}