nf-core_modules/tests/modules/ncbigenomedownload/main.nf
Robert A. Petit III 2294ff7826
add ncbi-genome-download module (#980)
* add ncbi-genome-download module

* Update modules/ncbigenomedownload/main.nf

Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-11-15 18:32:53 +00:00

16 lines
392 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { NCBIGENOMEDOWNLOAD } from '../../../modules/ncbigenomedownload/main.nf' addParams( options: [ args: '-A GCF_000013425.1 --formats genbank,fasta,assembly-stats bacteria '] )
workflow test_ncbigenomedownload {
input = [ [ id:'test', single_end:false ] ]
accessions = []
NCBIGENOMEDOWNLOAD ( input, accessions)
}