nf-core_modules/tests/modules/gecco/run/main.nf

18 lines
402 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GECCO_RUN } from '../../../../modules/gecco/run/main.nf'
workflow test_gecco_run {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['candidatus_portiera_aleyrodidarum']['genome']['genome_fasta'], checkIfExists: true),
[]
]
model_dir = []
GECCO_RUN ( input, model_dir )
}