nf-core_modules/tests/modules/imputeme/vcftoprs/main.nf
Lasse Folkersen e560fbbc3e
Imputeme (#882)
* first commit with imputeme as a module. Extensive re-write of imputeme-code, resulting in release v1.0.7 that is runnable in the next-flow framework.


Co-authored-by: EC2 Default User <ec2-user@ip-172-31-21-198.us-west-2.compute.internal>
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
Co-authored-by: Pontus Freyhult <pontus_github@soua.net>
2021-11-05 10:25:54 +01:00

15 lines
398 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { IMPUTEME_VCFTOPRS } from '../../../../modules/imputeme/vcftoprs/main.nf' addParams( options: [:] )
workflow test_imputeme_vcftoprs {
input = [
[ id:'test' ], // meta map
file(params.test_data['homo_sapiens']['genome']['syntheticvcf_short_vcf_gz'], checkIfExists: true)
]
IMPUTEME_VCFTOPRS ( input )
}