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>
18 lines
744 B
Text
18 lines
744 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { DEEPVARIANT } from '../../../modules/deepvariant/main.nf'
|
|
|
|
workflow test_deepvariant {
|
|
|
|
bam_tuple_ch = Channel.of([[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)])
|
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
fai = file(params.test_data['homo_sapiens']['genome']['genome_fasta_fai'], checkIfExists: true)
|
|
|
|
DEEPVARIANT ( bam_tuple_ch, fasta, fai)
|
|
}
|