mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
14 lines
370 B
Text
14 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 )
|
||
|
}
|