nf-core_modules/tests/modules/bclconvert/nextflow.config
Matthias De Smet f32dc15414
update bclconvert module, as used in nf-core/demultiplex (#1569)
* 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>
2022-06-16 15:03:13 +02:00

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