nf-core_modules/tests/modules/samtools/view/nextflow.config
Priyanka Surana 83b05a8dc0
add qname feature to samtools/view (#2115)
* add qname feature to samtools_view

* update tests

* Update modules/samtools/view/meta.yml

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>

* Update modules/samtools/view/meta.yml

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>

* added filter tests

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
2022-09-28 13:04:41 +01:00

18 lines
457 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"
}
withName: 'test_samtools_view_filter:SAMTOOLS_VIEW' {
ext.args = "--output-fmt bam --write-index"
}
}