mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
17 lines
472 B
Text
17 lines
472 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { MEDAKA } from '../../../modules/medaka/main.nf' addParams( options: [suffix:'.polished.genome'] )
|
||
|
|
||
|
workflow test_medaka {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test', single_end:true ], // meta map
|
||
|
file(params.test_data['sarscov2']['nanopore']['test_fastq_gz'], checkIfExists: true),
|
||
|
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
MEDAKA ( input )
|
||
|
}
|