nf-core_modules/tests/modules/bcftools/annotate/main.nf
Mei Wu 38ffbfdb63
bcftools/annotate follow up corrections (#1359)
* bcf annotate ready2go

* edited output name

* fixed output

* updated bcftools ver

* changed contain output string

* removed contain key entirely

* fixed md5sum for test.yml

* using match instead of find

* bcftools/annotate refactored with complete test

* rm trailing white space

Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
2022-02-28 10:16:29 -05:00

23 lines
632 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BCFTOOLS_ANNOTATE } from '../../../../modules/bcftools/annotate/main.nf'
workflow test_bcftools_annotate_out_vcf {
input = [
[ id:'test_compressed_vcf', single_end:false ], // meta map
file(params.test_data['sarscov2']['illumina']['test_vcf_gz'], checkIfExists: true) ]
BCFTOOLS_ANNOTATE ( input )
}
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 )
}