2019-01-09 16:27:55 +00:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
2019-08-07 09:55:56 +00:00
|
|
|
config_profile_description = 'MUNIN profile provided by nf-core/configs.'
|
2019-01-09 16:27:55 +00:00
|
|
|
config_profile_contact = 'Szilveszter Juhos (@szilva)'
|
|
|
|
config_profile_url = ''
|
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
executor = 'local'
|
2019-08-07 10:26:51 +00:00
|
|
|
maxForks = 46
|
2019-01-09 16:27:55 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 09:55:56 +00:00
|
|
|
// To use singularity, use nextflow run -profile munin,singularity
|
2019-01-11 14:28:10 +00:00
|
|
|
singularity {
|
2019-01-11 13:37:12 +00:00
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
|
2019-08-07 09:10:48 +00:00
|
|
|
// To use docker, use nextflow run -profile munin,docker
|
2019-01-11 14:28:10 +00:00
|
|
|
docker {
|
|
|
|
enabled = false
|
|
|
|
mountFlags = 'z'
|
|
|
|
fixOwnership = true
|
|
|
|
}
|
|
|
|
|
2019-01-09 16:27:55 +00:00
|
|
|
params {
|
2019-08-07 09:10:48 +00:00
|
|
|
// general params
|
2019-08-07 10:26:51 +00:00
|
|
|
max_memory = 752.GB
|
|
|
|
max_cpus = 46
|
2019-01-09 16:27:55 +00:00
|
|
|
max_time = 72.h
|
2019-08-07 09:10:48 +00:00
|
|
|
|
2019-08-07 09:47:47 +00:00
|
|
|
// Local AWS iGenomes reference file paths on munin
|
2019-08-16 09:13:32 +00:00
|
|
|
igenomes_base = '/data1/references/igenomes/'
|
2019-08-07 09:47:41 +00:00
|
|
|
}
|