nf-core_modules/tests/modules/rtgtools/vcfeval/main.nf

66 lines
1.9 KiB
Text
Raw Normal View History

2022-05-04 14:51:09 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { RTGTOOLS_VCFEVAL } from '../../../../modules/rtgtools/vcfeval/main.nf'
include { UNTAR } from '../../../modules/untar/main.nf'
2022-05-04 14:51:09 +00:00
workflow test_rtgtools_vcfeval {
input = [
2022-05-06 12:23:40 +00:00
[ id:'test' ], // meta map
file(params.test_data['homo_sapiens']['illumina']['test2_haplotc_vcf_gz'], checkIfExists: true),
2022-05-09 13:47:07 +00:00
file(params.test_data['homo_sapiens']['illumina']['test2_haplotc_vcf_gz_tbi'], checkIfExists: true),
2022-05-04 14:51:09 +00:00
]
truth = [
file(params.test_data['homo_sapiens']['illumina']['test2_haplotc_ann_vcf_gz'], checkIfExists: true),
file(params.test_data['homo_sapiens']['illumina']['test2_haplotc_ann_vcf_gz_tbi'], checkIfExists: true)
]
2022-05-09 13:47:07 +00:00
bed = file(params.test_data['homo_sapiens']['genome']['genome_21_multi_interval_bed'], checkIfExists: true)
compressed_sdf = [
[],
2022-05-06 12:23:40 +00:00
file(params.test_data['homo_sapiens']['genome']['genome_21_sdf'])
]
sdf = UNTAR( compressed_sdf ).untar
.map({
meta, folder ->
folder
})
2022-05-06 12:23:40 +00:00
2022-05-09 13:47:07 +00:00
RTGTOOLS_VCFEVAL ( input, truth, bed, sdf )
2022-05-06 12:23:40 +00:00
}
workflow test_rtgtools_vcfeval_no_index {
input = [
[ id:'test' ], // meta map
file(params.test_data['homo_sapiens']['illumina']['test2_haplotc_vcf_gz'], checkIfExists: true),
[],
]
truth = [
file(params.test_data['homo_sapiens']['illumina']['test2_haplotc_ann_vcf_gz'], checkIfExists: true),
[]
]
2022-05-09 13:47:07 +00:00
bed = file(params.test_data['homo_sapiens']['genome']['genome_21_multi_interval_bed'], checkIfExists: true)
compressed_sdf = [
[],
2022-05-06 12:23:40 +00:00
file(params.test_data['homo_sapiens']['genome']['genome_21_sdf'])
]
sdf = UNTAR( compressed_sdf ).untar
.map({
meta, folder ->
[folder]
})
2022-05-06 12:23:40 +00:00
2022-05-09 13:47:07 +00:00
RTGTOOLS_VCFEVAL ( input, truth, bed, sdf )
2022-05-04 14:51:09 +00:00
}