mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
13 lines
292 B
Text
13 lines
292 B
Text
|
process {
|
||
|
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
|
||
|
withName: BCFTOOLS_CONVERT_GVCF {
|
||
|
ext.args = '--gvcf2vcf'
|
||
|
}
|
||
|
|
||
|
withName: BCFTOOLS_CONVERT_BCF {
|
||
|
ext.args = '--gvcf2vcf --output-type b5'
|
||
|
}
|
||
|
|
||
|
}
|