mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
417 B
Text
16 lines
417 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { ISOSEQ3_CLUSTER } from '../../../../modules/isoseq3/cluster/main.nf' addParams( options: [args: '--singletons --use-qvs --verbose'] )
|
||
|
|
||
|
workflow test_isoseq3_cluster {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test' ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['pacbio']['refine'], checkIfExists: true),
|
||
|
]
|
||
|
|
||
|
ISOSEQ3_CLUSTER ( input )
|
||
|
}
|