nf-core_modules/tests/modules/hifiasm/main.nf
Robert A. Petit III 5c463ca6b4
few version and test data config fixes (#758)
* update kleborate version info

* fix stderr capture

* few more version fixes

* fix version info on more tools
2021-09-28 20:42:04 +01:00

31 lines
928 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { HIFIASM } from '../../../modules/hifiasm/main.nf' addParams( options: [args:'-f0'] )
/*
* Test with long reads only
*/
workflow test_hifiasm_hifi_only {
input = [
[ id:'test' ], // meta map
[ file(params.test_data['homo_sapiens']['pacbio']['hifi'], checkIfExists: true) ]
]
HIFIASM ( input, [], [], false )
}
/*
* Test with parental reads for phasing
*/
workflow test_hifiasm_with_parental_reads {
input = [
[ id:'test' ], // meta map
[ file(params.test_data['homo_sapiens']['pacbio']['hifi'], checkIfExists: true) ]
]
paternal_kmer_dump = file(params.test_data['homo_sapiens']['illumina']['test_yak'], checkIfExists: true)
maternal_kmer_dump = file(params.test_data['homo_sapiens']['illumina']['test2_yak'], checkIfExists: true)
HIFIASM ( input, paternal_kmer_dump, maternal_kmer_dump, true )
}