2019-11-20 09:10:05 +00:00
|
|
|
// Profile config names for nf-core/configs
|
|
|
|
|
2019-01-09 16:27:55 +00:00
|
|
|
params {
|
2019-11-20 09:10:05 +00:00
|
|
|
// 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'
|
2019-11-20 09:10:05 +00:00
|
|
|
config_profile_url = 'https://ki.se/forskning/barntumorbanken'
|
|
|
|
|
|
|
|
// Local AWS iGenomes reference file paths on munin
|
|
|
|
igenomes_base = '/data1/references/igenomes/'
|
2019-11-21 13:21:32 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2019-01-11 14:28:10 +00:00
|
|
|
singularity {
|
2022-02-14 12:11:46 +00:00
|
|
|
cacheDir = '/data1/containers/'
|
|
|
|
enabled = true
|
2022-02-14 11:45:20 +00:00
|
|
|
runOptions = "--bind /media/BTB_2021_01"
|
2019-01-11 13:37:12 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 09:10:48 +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
|
|
|
}
|