mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
83b05a8dc0
* 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>
18 lines
457 B
Text
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"
|
|
}
|
|
|
|
|
|
}
|