nf-core_modules/tests/modules/merquryfk/katcomp/nextflow.config
Mahesh Binzer-Panchal 280eec5317
Add MerquryFK KatComp (#1797)
Add Kat Comp

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
2022-06-21 09:43:37 +02:00

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'
}
}