nf-core_modules/tests/software/appyter/main.nf
Edmund Miller ec97e1890b
fix(appyter): Make appyter_image a param instead of an option
Co-authored-by:  sruthipsuresh <sps180004@utdallas.edu>
2021-03-17 11:59:00 -05:00

11 lines
336 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)
APPYTER ( input )
}