mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 21:53:10 +00:00
c10f9eb817
* add lissero module * Update test.yml Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
13 lines
370 B
Text
13 lines
370 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { LISSERO } from '../../../modules/lissero/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_lissero {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file("https://github.com/MDU-PHL/LisSero/raw/master/tests/test_seq/NC_002973.fna", checkIfExists: true) ]
|
|
|
|
LISSERO ( input )
|
|
}
|