mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 20:53:08 +00:00
409af2f27c
* feat: code polishing * Apply suggestions from code review Co-authored-by: FriederikeHanssen <Friederike.hanssen@qbic.uni-tuebingen.de> * code polishing * more code polishing * code polishing * tests for applybqsrspark * fix typo * no need to check md5sum for versions.yml * fix: use correct syntax * code polishing again * add tests for markduplicatesspark * simplify mergevcfs tests * add tests for baserecalibratorspark * fix: path to entry * code polishing * fix linting * simplify module * update meta.yml * fix pair mode * fix: MITO mode * more tests * fix command * bad copy paste * fix typos * fix tests * fix test * update meta.yml * correct versions.yml in all test.yml * code polishing * code polishing * more code polishing * fix args * add tmpdir for all Co-authored-by: FriederikeHanssen <Friederike.hanssen@qbic.uni-tuebingen.de>
17 lines
441 B
Text
17 lines
441 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: GATK4_MUTECT2_PAIR {
|
|
ext.args = { "--normal-sample $meta.normal_id" }
|
|
}
|
|
|
|
withName: GATK4_MUTECT2_MITO {
|
|
ext.args = { "--mitochondria-mode" }
|
|
}
|
|
|
|
withName: GATK4_MUTECT2_F1R2 {
|
|
ext.args = { "--normal-sample $meta.normal_id --f1r2-tar-gz ${meta.id}.f1r2.tar.gz" }
|
|
}
|
|
|
|
}
|