mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
10 lines
226 B
Text
10 lines
226 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { KRONATOOLS_KRONADB } from '../../../../modules/kronatools/kronadb/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow test_kronatools_kronadb {
|
||
|
KRONATOOLS_KRONADB ( )
|
||
|
}
|