2021-02-12 18:08:57 -05:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
//keep --no-verson argument, otherwise md5 will change on each execution
|
2021-07-07 05:10:18 -04:00
|
|
|
include { BCFTOOLS_MERGE } from '../../../../modules/bcftools/merge/main.nf' addParams( options: ['args': '--force-samples --no-version'] )
|
2021-02-12 18:08:57 -05:00
|
|
|
|
|
|
|
workflow test_bcftools_merge {
|
|
|
|
input = [ [ id:'test' ], // meta map
|
2021-03-24 14:14:11 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test2_vcf_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test3_vcf_gz'], checkIfExists: true) ],
|
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test2_vcf_gz_tbi'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test3_vcf_gz_tbi'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
2021-02-12 18:08:57 -05:00
|
|
|
|
|
|
|
BCFTOOLS_MERGE ( input )
|
|
|
|
}
|