mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
25943a4c23
* Add glnexus * Fix lint error * Refactor * Suggested changes Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
13 lines
462 B
Text
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 )
|
|
}
|