nf-core_modules/tests/software/prokka/main.nf
Robert A. Petit III c2aa95cb6c
add prokka module (#298)
* add prokka module

* adjust test outputs

* fix prokka command

* adjust test outputs

* handle optional input

* update pytest

* update pytest

* adjust test outputs

* adjust test outputs

* switch to lists for optional inputs, add md5sums for non-timestamped outputs

* add optional prodigal training file

* add optional prodigal training info to meta yaml
2021-03-23 02:51:23 -07:00

12 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, [], [] )
}