nf-core_modules/tests/modules/bcftools/convert/nextflow.config
nvnieuwk 8d4373b4e8
added bcftools convert (#1906)
* added bcftools convert

* Update modules/bcftools/convert/main.nf

Co-authored-by: Matthias De Smet <11850640+matthdsm@users.noreply.github.com>

* updated test.yml

* Update modules/bcftools/convert/main.nf

Co-authored-by: Matthias De Smet <11850640+matthdsm@users.noreply.github.com>

* added automatic output type detection

* linting

* removed a trailing whitespace

Co-authored-by: Matthias De Smet <11850640+matthdsm@users.noreply.github.com>
2022-07-19 15:09:40 +02:00

13 lines
No EOL
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'
}
}