nf-core_modules/tests/modules/hmmcopy/gccounter/main.nf

12 lines
321 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { HMMCOPY_GCCOUNTER } from '../../../../modules/hmmcopy/gccounter/main.nf' addParams( options: [:] )
workflow test_hmmcopy_gccounter {
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
HMMCOPY_GCCOUNTER (fasta)
}