mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
17 lines
484 B
Text
17 lines
484 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { ISOSEQ3_REFINE } from '../../../../modules/isoseq3/refine/main' addParams( options: [suffix:'.refine'] )
|
||
|
|
||
|
workflow test_isoseq3_refine {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test' ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['pacbio']['lima'], checkIfExists: true),
|
||
|
]
|
||
|
primers = file(params.test_data['homo_sapiens']['pacbio']['primers'], checkIfExists: true)
|
||
|
|
||
|
ISOSEQ3_REFINE ( input, primers )
|
||
|
}
|