mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
5c463ca6b4
* update kleborate version info * fix stderr capture * few more version fixes * fix version info on more tools
31 lines
928 B
Text
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 )
|
|
}
|