nf-core_modules/tests/modules/seroba/run/main.nf
Robert A. Petit III e3e61068c1
add module for seroba (#1816)
* add module for seroba

* fix lint

* Update modules/seroba/run/meta.yml

Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk>

* Update modules/seroba/run/main.nf

Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk>
2022-09-26 16:06:08 +01:00

15 lines
498 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SEROBA_RUN } from '../../../../modules/seroba/run/main.nf'
workflow test_seroba_run {
input = [ [ id:'test', single_end:false ], // meta map
[ file("https://github.com/nf-core/test-datasets/raw/bacass/ERR044595_1M_1.fastq.gz", checkIfExists: true),
file("https://github.com/nf-core/test-datasets/raw/bacass/ERR044595_1M_2.fastq.gz", checkIfExists: true) ]
]
SEROBA_RUN ( input )
}