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

13 lines
380 B
Text
Raw Normal View History

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