nf-core_modules/tests/software/appyter/main.nf
Edmund Miller 8b4fe3c215
fix(appyter): Add hack to get example working
Co-authored-by:  sruthipsuresh <sps180004@utdallas.edu>
2021-03-17 12:06:17 -05:00

12 lines
438 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { APPYTER } from '../../../software/appyter/main.nf' addParams( 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)
input_file = file("${launchDir}/tests/software/appyter/test.txt", checkIfExists: true)
APPYTER ( input, input_file)
}