mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
38ffbfdb63
* 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>
23 lines
632 B
Text
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 )
|
|
}
|