mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
33 lines
683 B
Text
33 lines
683 B
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_description = 'MUNIN profile provided by nf-core/configs.'
|
|
config_profile_contact = 'Szilveszter Juhos (@szilva)'
|
|
config_profile_url = ''
|
|
}
|
|
|
|
process {
|
|
executor = 'local'
|
|
maxForks = 46
|
|
}
|
|
|
|
// To use singularity, use nextflow run -profile munin,singularity
|
|
singularity {
|
|
enabled = true
|
|
}
|
|
|
|
// To use docker, use nextflow run -profile munin,docker
|
|
docker {
|
|
enabled = false
|
|
mountFlags = 'z'
|
|
fixOwnership = true
|
|
}
|
|
|
|
params {
|
|
// general params
|
|
max_memory = 752.GB
|
|
max_cpus = 46
|
|
max_time = 72.h
|
|
|
|
// Local AWS iGenomes reference file paths on munin
|
|
igenomes_base = '/data1/references/igenomes/'
|
|
}
|