2022-02-28 13:23:12 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { BCFTOOLS_ANNOTATE } from '../../../../modules/bcftools/annotate/main.nf'
|
|
|
|
|
2022-02-28 15:16:29 +00:00
|
|
|
workflow test_bcftools_annotate_out_vcf {
|
|
|
|
|
2022-02-28 13:23:12 +00:00
|
|
|
input = [
|
2022-02-28 15:16:29 +00:00
|
|
|
[ id:'test_compressed_vcf', single_end:false ], // meta map
|
2022-02-28 13:23:12 +00:00
|
|
|
file(params.test_data['sarscov2']['illumina']['test_vcf_gz'], checkIfExists: true) ]
|
|
|
|
|
|
|
|
BCFTOOLS_ANNOTATE ( input )
|
|
|
|
}
|
2022-02-28 15:16:29 +00:00
|
|
|
|
|
|
|
workflow test_bcftools_annotate_out_bcf {
|
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test_compressed_bcf', single_end:false ], // meta map
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_bcf'], checkIfExists: true) ]
|
|
|
|
|
|
|
|
BCFTOOLS_ANNOTATE ( input )
|
|
|
|
}
|