mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
cd1d0b5f8f
rename file improve configs remove unnecessary params
29 lines
No EOL
694 B
Text
29 lines
No EOL
694 B
Text
// Profile config names for nf-core/configs
|
|
|
|
params {
|
|
// Specific nf-core/configs params
|
|
config_profile_contact = 'Szilveszter Juhos (@szilva)'
|
|
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/'
|
|
}
|
|
|
|
process {
|
|
executor = 'local'
|
|
maxForks = 46
|
|
}
|
|
|
|
// To use singularity, use nextflow run -profile munin
|
|
singularity {
|
|
enabled = true
|
|
cacheDir = '/data1/containers/'
|
|
}
|
|
|
|
// To use docker, use nextflow run -profile munin,docker
|
|
docker {
|
|
enabled = false
|
|
mountFlags = 'z'
|
|
fixOwnership = true
|
|
} |