mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
c363d8c37c
* added gvcftools/extractvariants * linting * Update modules/gvcftools/extractvariants/meta.yml Co-authored-by: Júlia Mir Pedrol <mirp.julia@gmail.com> * Update modules/gvcftools/extractvariants/main.nf Co-authored-by: Júlia Mir Pedrol <mirp.julia@gmail.com> * added uncompressed input handling Co-authored-by: Júlia Mir Pedrol <mirp.julia@gmail.com>
25 lines
691 B
Text
25 lines
691 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { GVCFTOOLS_EXTRACTVARIANTS } from '../../../../modules/gvcftools/extractvariants/main.nf'
|
|
|
|
workflow test_gvcftools_extractvariants {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf_gz'], checkIfExists: true)
|
|
]
|
|
|
|
GVCFTOOLS_EXTRACTVARIANTS ( input )
|
|
}
|
|
|
|
workflow test_gvcftools_extractvariants_uncompressed {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf'], checkIfExists: true)
|
|
]
|
|
|
|
GVCFTOOLS_EXTRACTVARIANTS ( input )
|
|
}
|