#!/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 )
}