mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
14 lines
380 B
Text
14 lines
380 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { PORECHOP } from '../../../modules/porechop/main.nf' addParams( options: [args: '', suffix: '_porechop'] )
|
||
|
|
||
|
workflow test_porechop {
|
||
|
|
||
|
input = [ [ id:'test', single_end:true ], // meta map
|
||
|
file(params.test_data['sarscov2']['nanopore']['test_fastq_gz'], checkIfExists: true) ]
|
||
|
|
||
|
PORECHOP ( input )
|
||
|
}
|