nf-core_modules/tests/modules/bcftools/roh/main.nf

36 lines
1,000 B
Text
Raw Normal View History

2022-05-20 14:46:19 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BCFTOOLS_ROH } from '../../../../modules/bcftools/roh/main.nf'
workflow test_bcftools_roh {
2022-05-20 15:10:09 +00:00
input = [ [ id:'test' ], // 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)]
2022-06-08 12:48:16 +00:00
af_file = [[],[]]
2022-05-20 15:10:09 +00:00
gen_map = []
regions = []
targets = []
samples = []
BCFTOOLS_ROH ( input, af_file, gen_map, regions, samples, targets )
}
workflow test_bcftools_roh_stub {
input = [ [ id:'test' ], // meta map
2022-05-20 14:46:19 +00:00
file(params.test_data['sarscov2']['illumina']['test_vcf_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_vcf_gz_tbi'], checkIfExists: true)]
2022-06-08 12:48:16 +00:00
af_file = [[],[]]
2022-05-20 14:46:19 +00:00
gen_map = []
regions = []
targets = []
samples = []
BCFTOOLS_ROH ( input, af_file, gen_map, regions, samples, targets )
}