nf-core_modules/tests/modules/bcftools/stats/main.nf
SusiJo 535975eb81
Update bcftools/stats for WES (#1893)
update bcftools/stats
2022-07-15 20:55:59 +02:00

13 lines
349 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BCFTOOLS_STATS } from '../../../../modules/bcftools/stats/main.nf'
workflow test_bcftools_stats {
input = [ [ id:'test' ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_vcf'], checkIfExists: true) ],
]
BCFTOOLS_STATS ( input, [] )
}