mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
399 B
Text
16 lines
399 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { GAPPA_EXAMINEGRAFT } from '../../../../modules/gappa/examinegraft/main.nf'
|
||
|
|
||
|
workflow test_gappa_examinegraft {
|
||
|
|
||
|
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_EXAMINEGRAFT ( input )
|
||
|
}
|