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