nf-core_modules/tests/software/qcat/main.nf

15 lines
424 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { QCAT } from '../../../software/qcat/main.nf' addParams( options: [:] )
workflow test_qcat {
input = [ [ id:'test' ], // meta map
[ file("https://github.com/nf-core/test-datasets/raw/nanoseq/fastq/nondemultiplexed/sample_nobc_dx.fastq.gz", checkIfExists: true) ]
]
barcode_kit = 'NBD103/NBD104'
QCAT ( input, barcode_kit )
}