nf-core_modules/tests/modules/nextclade/datasetget/main.nf
Harshil Patel 796dbb573e
Add nextclade/datasetget and nextclade/run modules (#1210)
* 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
2022-01-17 11:46:15 +01:00

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 )
}