mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
13 lines
380 B
Text
13 lines
380 B
Text
|
#!/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, [], [] )
|
||
|
}
|