mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
2294ff7826
* 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>
16 lines
392 B
Text
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)
|
|
}
|
|
|
|
|