nf-core_modules/tests/software/appyter/main.nf
Edmund Miller 7d8389deea
test(appyter): Add initial tests
Co-authored-by:  sruthipsuresh <sps180004@utdallas.edu>
2021-03-17 10:22:26 -05:00

11 lines
347 B
Text

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