mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-07 22:42:08 -05:00
12 lines
347 B
Text
12 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 )
|
||
|
}
|