2021-09-14 07:19:01 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { BCFTOOLS_QUERY } from '../../../../modules/bcftools/query/main.nf'
|
2021-09-14 07:19:01 +00:00
|
|
|
|
|
|
|
workflow test_bcftools_query {
|
|
|
|
|
|
|
|
regions = []
|
|
|
|
targets = []
|
|
|
|
samples = []
|
|
|
|
|
|
|
|
input = [ [ id:'out' ], // meta map
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_vcf_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_vcf_gz_tbi'], checkIfExists: true)]
|
|
|
|
|
|
|
|
BCFTOOLS_QUERY ( input, regions, targets, samples )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_bcftools_query_with_optional_files {
|
|
|
|
|
|
|
|
regions = file(params.test_data['sarscov2']['illumina']['test3_vcf_gz'], checkIfExists: true)
|
|
|
|
targets = file(params.test_data['sarscov2']['illumina']['test2_vcf_targets_tsv_gz'], checkIfExists: true)
|
|
|
|
samples = []
|
|
|
|
|
|
|
|
input = [ [ id:'out' ], // meta map
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_vcf_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_vcf_gz_tbi'], checkIfExists: true)]
|
|
|
|
|
|
|
|
BCFTOOLS_QUERY ( input, regions, targets, samples )
|
|
|
|
}
|