nf-core_modules/tests/modules/hmmcopy/gccounter/main.nf
Simon Pearce cac6dc83bb
gccounter module for hmmcopy (#1003)
* hmmcopy gccounter working

* Update modules/hmmcopy/gccounter/main.nf

Co-authored-by: Chris Cheshire <chris.j.cheshire@gmail.com>

* Update main.nf

Changed version to 0.1.1 as the container says

Co-authored-by: Simon Pearce <simon.pearce@cruk.manchester.ac.uk>
Co-authored-by: Chris Cheshire <chris.j.cheshire@gmail.com>
2021-11-02 09:59:25 +00:00

11 lines
321 B
Text

#!/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)
}