mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
09159edc9e
* samtools view update * remove csi output * prettier * update meta * add index functionality * prettier * fixed test checks
13 lines
339 B
Text
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"
|
|
}
|
|
|
|
}
|