mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
0857e6c60f
* 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>
15 lines
411 B
Text
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 )
|
|
}
|