nf-core_modules/tests/modules/samtools/view/nextflow.config
Priyanka Surana 09159edc9e
Update samtools view (#2098)
* samtools view update

* remove csi output

* prettier

* update meta

* add index functionality

* prettier

* fixed test checks
2022-09-23 16:52:01 +02:00

13 lines
339 B
Text

process {
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
withName: 'test_samtools_view_convert:SAMTOOLS_VIEW' {
ext.args = "--output-fmt bam"
}
withName: 'test_samtools_view_index:SAMTOOLS_VIEW' {
ext.args = "--output-fmt bam --write-index"
}
}