mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
14 lines
317 B
Text
14 lines
317 B
Text
|
process {
|
||
|
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
|
||
|
withName: SAMTOOLS_VIEW {
|
||
|
ext.suffix = '.sam'
|
||
|
}
|
||
|
|
||
|
withName: METAPHLAN3 {
|
||
|
ext.args = '--index mpa_v30_CHOCOPhlAn_201901 --add_viruses --bt2_ps very-sensitive-local'
|
||
|
}
|
||
|
|
||
|
}
|