mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
6243c3792c
* Add stubs for deepvariant [ci skip] * Update the stubs for deepvariant [ci skip] * functional with google docker image * cleanup * consume docker container within singularity executor * update the meta.yml file and ask for review * tweak the input channel shape and test data * tweak input data [ci skip] * update for the new syntax * remove the functions and rename meta vars * Update the arguments mechanism * update chr, region and checksum Co-authored-by: Gregor Sturm <mail@gregor-sturm.de> Co-authored-by: Maxime U. Garcia <max.u.garcia@gmail.com> Co-authored-by: FriederikeHanssen <Friederike.hanssen@qbic.uni-tuebingen.de>
10 lines
267 B
Text
10 lines
267 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: DEEPVARIANT {
|
|
ext.args = ' --regions=\"chr22:0-40001\" --model_type=WGS '
|
|
ext.prefix = { "${meta.id}_out" }
|
|
}
|
|
|
|
}
|