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

12 lines
285 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GFFREAD } from '../../../software/gffread/main.nf' addParams( options: [:] )
workflow test_gffread {
def input = []
input = [ file("${launchDir}/tests/data/gff/a.gff3", checkIfExists: true) ]
GFFREAD ( input )
}