mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
280eec5317
Add Kat Comp Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
19 lines
469 B
Text
19 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'
|
|
}
|
|
|
|
}
|