nf-core_modules/tests/modules/deeparg/predict/main.nf
James A. Fellows Yates c3bacb9fdd
Add deeparg (#1234)
* Add deeparg download data

* Tweak downloaddata test.yml

* Add deeparg tests

* Apply suggestions from code review

* Fix output file paths in test

* Fix tests again md5sum to string
2022-01-26 15:19:16 +01:00

19 lines
537 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { DEEPARG_DOWNLOADDATA } from '../../../../modules/deeparg/downloaddata/main.nf'
include { DEEPARG_PREDICT } from '../../../../modules/deeparg/predict/main.nf'
workflow test_deeparg_predict {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['bacteroides_fragilis']['genome']['genome_fna_gz'], checkIfExists: true),
'LS'
]
DEEPARG_DOWNLOADDATA()
DEEPARG_PREDICT ( input, DEEPARG_DOWNLOADDATA.out.db )
}