nf-core_modules/tests/modules/pirate/main.nf
Robert A. Petit III 053797510d
add pirate module (#777)
* new module pirate

* remove md5 check for non reproducible binary files

* get those to-dos out

* Update main.nf

* Update meta.yml

* Apply suggestions from code review

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-10-05 22:28:25 +01:00

16 lines
658 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { PIRATE } from '../../../modules/pirate/main.nf' addParams( options: [:] )
workflow test_pirate {
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) ]
]
PIRATE ( input )
}