nf-core_modules/tests/modules/glnexus/main.nf
Ramprasad Neethiraj 25943a4c23
Add glnexus (#729)
* Add glnexus

* Fix lint error

* Refactor

* Suggested changes

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-09-22 13:31:01 +01:00

13 lines
462 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GLNEXUS } from '../../../modules/glnexus/main.nf' addParams( options: [:] )
workflow test_glnexus {
input = [ [ id:'test' ], // meta map
[ file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf_gz'], checkIfExists: true),
file(params.test_data['homo_sapiens']['illumina']['test2_genome_vcf_gz'], checkIfExists: true) ]
]
GLNEXUS ( input )
}