nf-core_modules/tests/modules/motus/downloaddb/main.nf

13 lines
297 B
Text
Raw Normal View History

2022-04-14 16:56:42 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { MOTUS_DOWNLOADDB } from '../../../../modules/motus/downloaddb/main.nf'
workflow test_motus_downloaddb {
input = file('https://raw.githubusercontent.com/motu-tool/mOTUs/master/motus/downloadDB.py')
MOTUS_DOWNLOADDB ( input )
}