mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
04dfb65335
* deepbgc_download first version * with test.yml * Apply suggestions from code review Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Apply suggestions from code review * delete trailing whitespace main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
10 lines
194 B
Text
10 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 ( )
|
|
}
|