mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 14:13:09 +00:00
13 lines
262 B
Text
13 lines
262 B
Text
|
process {
|
||
|
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
|
||
|
withName:SAMTOOLS_VIEW {
|
||
|
ext.args = "-q 30 -b"
|
||
|
}
|
||
|
|
||
|
withName:SAMTOOLS_FLAGSTAT2 {
|
||
|
ext.prefix = "test.filtered"
|
||
|
}
|
||
|
}
|