2019-11-20 04:10:05 -05:00
|
|
|
// Profile config names for nf-core/configs
|
|
|
|
|
2019-01-09 11:27:55 -05:00
|
|
|
params {
|
2019-11-20 04:10:05 -05:00
|
|
|
// Specific nf-core/configs params
|
2019-11-22 07:55:08 -05:00
|
|
|
config_profile_contact = 'Szilveszter Juhos (@szilvajuhos)'
|
2019-11-20 04:10:05 -05:00
|
|
|
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/'
|
2019-11-21 08:21:32 -05:00
|
|
|
|
|
|
|
// General cpus/memory/time requirements
|
|
|
|
max_cpus = 46
|
|
|
|
max_memory = 752.GB
|
|
|
|
max_time = 72.h
|
2019-01-09 11:27:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
executor = 'local'
|
2019-08-07 06:26:51 -04:00
|
|
|
maxForks = 46
|
2019-01-09 11:27:55 -05:00
|
|
|
}
|
|
|
|
|
2019-01-11 09:28:10 -05:00
|
|
|
singularity {
|
2019-01-11 08:37:12 -05:00
|
|
|
enabled = true
|
2019-11-20 04:10:05 -05:00
|
|
|
cacheDir = '/data1/containers/'
|
2019-01-11 08:37:12 -05:00
|
|
|
}
|
|
|
|
|
2019-08-07 05:10:48 -04:00
|
|
|
// To use docker, use nextflow run -profile munin,docker
|
2019-01-11 09:28:10 -05:00
|
|
|
docker {
|
|
|
|
enabled = false
|
|
|
|
mountFlags = 'z'
|
|
|
|
fixOwnership = true
|
2019-11-22 07:55:08 -05:00
|
|
|
}
|