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