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

22 lines
607 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { NANOPLOT } from '../../../modules/nanoplot/main.nf' addParams( options: [:] )
workflow test_nanoplot_summary {
def input = []
input = [ [ id:'test' ], // meta map
[ file(params.test_data['sarscov2']['nanopore']['test_sequencing_summary'], checkIfExists: true) ] ]
NANOPLOT ( input )
}
workflow test_nanoplot_fastq {
def input = []
input = [ [ id:'test' ], // meta map
[ file(params.test_data['sarscov2']['nanopore']['test_fastq_gz'], checkIfExists: true) ] ]
NANOPLOT ( input )
}