mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
15 lines
286 B
Text
15 lines
286 B
Text
|
#!/usr/bin/env nextflow
|
||
|
nextflow.preview.dsl = 2
|
||
|
include '../main.nf' params(params)
|
||
|
|
||
|
// Define input channels
|
||
|
|
||
|
Channel
|
||
|
.fromFilePairs('../../../test-datasets/tools/cutadapt/input/*_{1,2}.fastq' )
|
||
|
.set { ch_read_files }
|
||
|
|
||
|
// Run the workflow
|
||
|
workflow {
|
||
|
cutadapt(ch_read_files)
|
||
|
}
|