mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
0ba88fb869
* add module roary * Update meta.yml * Update meta.yml * Update meta.yml * Update meta.yml * Update main.nf * Update meta.yml * Apply suggestions from code review Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
16 lines
654 B
Text
16 lines
654 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { ROARY } from '../../../modules/roary/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_roary {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
[ file("https://github.com/bactopia/bactopia-tests/raw/main/data/reference/gff/GCF_000292685.gff", checkIfExists: true),
|
|
file("https://github.com/bactopia/bactopia-tests/raw/main/data/reference/gff/GCF_000298385.gff", checkIfExists: true),
|
|
file("https://github.com/bactopia/bactopia-tests/raw/main/data/reference/gff/GCF_002849995.gff", checkIfExists: true) ]
|
|
]
|
|
|
|
ROARY ( input )
|
|
}
|