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

12 lines
347 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { APPYTER } from '../../../software/appyter/main.nf' addParams( options: [appyter_image: "maayanlab/appyter-example:0.0.3-0.12.2"] )
workflow test_appyter {
def input = []
input = file("${launchDir}/tests/software/appyter/input.json", checkIfExists: true)
APPYTER ( input )
}