nf-core_modules/tests/modules/gappa/examineheattree/main.nf
Daniel Lundin 0857e6c60f
Adding gappa/examineheattree (#2084)
* Adding gappa/examineheattree

* Update modules/gappa/examineheattree/meta.yml

Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com>

* Check versions.yml for md5 sum instead

Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com>
2022-09-22 15:51:25 +02:00

15 lines
411 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GAPPA_EXAMINEHEATTREE } from '../../../../modules/gappa/examineheattree/main.nf'
workflow test_gappa_examineheattree {
input = [
[ id:'test' ], // meta map
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/gappa/epa_result.jplace.gz', checkIfExists: true)
]
GAPPA_EXAMINEHEATTREE ( input )
}