mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 14:13:09 +00:00
11 lines
194 B
Text
11 lines
194 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { DEEPBGC_DOWNLOAD } from '../../../../modules/deepbgc/download/main.nf'
|
||
|
|
||
|
workflow test_deepbgc_download {
|
||
|
|
||
|
DEEPBGC_DOWNLOAD ( )
|
||
|
}
|