mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
23 lines
661 B
Text
23 lines
661 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { EPANG } from '../../../modules/epang/main.nf'
|
||
|
|
||
|
workflow test_epang {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test', model:'LG' ], // meta map
|
||
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/epang/query.alnfaa.gz', checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
EPANG (
|
||
|
input,
|
||
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/epang/reference.alnfaa.gz', checkIfExists: true),
|
||
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/epang/reference.newick', checkIfExists: true),
|
||
|
[],
|
||
|
[],
|
||
|
[]
|
||
|
)
|
||
|
}
|