mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
1287ba48fe
* Update version & add intervals usage * Fix config when passing intervals as file * Use proper paths
14 lines
396 B
Text
14 lines
396 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: DEEPVARIANT {
|
|
ext.args = ' --regions=\"chr22:0-40001\" --model_type=WGS '
|
|
ext.prefix = { "${meta.id}_out" }
|
|
}
|
|
withName: DEEPVARIANT_INTERVALS {
|
|
ext.args = '--model_type=WGS '
|
|
ext.prefix = { "${meta.id}_out" }
|
|
}
|
|
|
|
}
|