mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
9d7208504d
* Add gecco/run module * Fix container URLs * Apply suggestions from code review Co-authored-by: Jasmin F <73216762+jasmezz@users.noreply.github.com>
17 lines
402 B
Text
17 lines
402 B
Text
#!/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 )
|
|
}
|