nf-core_modules/tests/modules/tailfindr/main.nf

16 lines
355 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { TAILFINDR } from '../../../modules/tailfindr/main.nf'
workflow test_tailfindr {
input = [
[ id: 'test' ], // meta map
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/tailfindr/test.fast5', checkIfExists: true)
]
TAILFINDR ( input )
}