mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
e3e61068c1
* 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>
15 lines
498 B
Text
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 )
|
|
}
|