mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
b67556e29f
* Add FastK/Merge * Update modules/fastk/merge/main.nf * Update modules/fastk/merge/meta.yml Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk> Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk>
14 lines
368 B
Text
14 lines
368 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: 'test_fastk_merge_all_files:FASTK_FASTK' {
|
|
ext.args = '-t1 -p'
|
|
}
|
|
withName: 'FASTK_FASTK' {
|
|
ext.args = '-t1'
|
|
ext.prefix = { "${meta.id}_${task.index}" }
|
|
publishDir = [ enabled: false ]
|
|
}
|
|
|
|
}
|