nf-core_modules/tests/software/prodigal/main.nf

14 lines
359 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { PRODIGAL } from '../../../software/prodigal/main.nf' addParams( options: [:] )
workflow test_prodigal {
input = [ [ id:'test' ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/genome/genome.fasta", checkIfExists: true)
]
PRODIGAL ( input , "gff")
}