mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
385 B
Text
16 lines
385 B
Text
#!/usr/bin/env nextflow
|
|
nextflow.preview.dsl = 2
|
|
include '../../../nf-core/module_testing/check_process_outputs.nf' params(params)
|
|
include '../main.nf' params(params)
|
|
|
|
// Define input channels
|
|
input = '../../../test-datasets/tools/bwa/index/input/reference.fasta'
|
|
Channel
|
|
.from(input)
|
|
.set { ch_input }
|
|
|
|
// Run the workflow
|
|
workflow {
|
|
fastqc(ch_input)
|
|
// .check_output()
|
|
}
|