mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
796dbb573e
* Remove old nextclade module * Add nextclade/datasetget and nextclade/run modules * Fix ECLint * Add reference and tag as inputs to datasetget module * Fix tests * Adjust spacing
14 lines
321 B
Text
14 lines
321 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { NEXTCLADE_DATASETGET } from '../../../../modules/nextclade/datasetget/main.nf'
|
|
|
|
workflow test_nextclade_datasetget {
|
|
|
|
dataset = 'sars-cov-2'
|
|
reference = 'MN908947'
|
|
tag = '2022-01-05T19:54:31Z'
|
|
|
|
NEXTCLADE_DATASETGET ( dataset, reference, tag )
|
|
}
|