mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
f32dc15414
* update bclconvert module, as used in nf-core/demultiplex * reconfigure test with new test data * update test * formatting * update outputs, update meta * update module and test * update test config, test.yml * fix linting * emit logs and reports as dir * fix typo, recreate test.yml * fix linting Co-authored-by: CMGG ICT Team <ict@cmgg.be>
14 lines
390 B
Text
14 lines
390 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
withName: BCLCONVERT {
|
|
ext.args = {[
|
|
meta.lane ? "--bcl-only-lane ${meta.lane}" : "",
|
|
"--force",
|
|
"--first-tile-only true"
|
|
].join(" ").trim()}
|
|
}
|
|
withName: UNTAR {
|
|
publishDir = [ enabled: false ]
|
|
}
|
|
}
|