mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
535975eb81
update bcftools/stats
13 lines
349 B
Text
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, [] )
|
|
}
|