2021-09-12 17:51:40 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { BCFTOOLS_VIEW } from '../../../../modules/bcftools/view/main.nf'
|
2021-09-12 17:51:40 +00:00
|
|
|
|
|
|
|
workflow test_bcftools_view {
|
|
|
|
|
|
|
|
regions = []
|
|
|
|
targets = []
|
|
|
|
samples = []
|
|
|
|
|
|
|
|
input = [[ id:'out', single_end:false ], // 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_VIEW ( input, regions, targets, samples )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_bcftools_view_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', single_end:false ], // meta map
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test2_vcf_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test2_vcf_gz_tbi'], checkIfExists: true)]
|
|
|
|
|
|
|
|
BCFTOOLS_VIEW ( input, regions, targets, samples )
|
|
|
|
}
|