mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 22:23:09 +00:00
20 lines
469 B
Text
20 lines
469 B
Text
|
process {
|
||
|
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
|
||
|
withName: 'FASTK.*' {
|
||
|
ext.args = '-t'
|
||
|
publishDir = [ enabled: false ]
|
||
|
}
|
||
|
withName: 'FASTK1' {
|
||
|
ext.prefix = { "${meta.id}_sampleA" }
|
||
|
}
|
||
|
withName: 'FASTK2' {
|
||
|
ext.prefix = { "${meta.id}_sampleB" }
|
||
|
}
|
||
|
withName: 'test_merquryfk_katcomp_pdf:MERQURYFK_KATCOMP' {
|
||
|
ext.args = '-pdf'
|
||
|
}
|
||
|
|
||
|
}
|