mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
18 lines
357 B
Text
18 lines
357 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.preview.dsl = 2
|
||
|
|
||
|
// import shovill
|
||
|
include {shovill} from '../main.nf' params(params)
|
||
|
|
||
|
// define input channel
|
||
|
readsPath = '../../../test-datasets/tools/shovill/input/SRR3609257_{1,2}.fastq.gz'
|
||
|
Channel
|
||
|
.fromFilePairs( "${readsPath}", flat: true )
|
||
|
.set{ ch_reads }
|
||
|
|
||
|
// main workflow
|
||
|
workflow {
|
||
|
shovill(ch_reads)
|
||
|
}
|