nf-core_modules/tests/software/gffread/main.nf
Edmund Miller 86850dc8a4 style: Remove old comment
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-01-15 10:32:20 -06:00

11 lines
285 B
Text

#!/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 )
}