nf-core_modules/tests/modules/epang/main.nf

23 lines
661 B
Text
Raw Normal View History

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