nf-core_modules/tests/software/prodigal/main.nf
Gregor Sturm e33860a2e8
Prodigal (#333)
* WIP add prodigal

* Implement module and add tests

* Fix EC lint
2021-03-23 11:03:58 -07:00

14 lines
370 B
Text

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