You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nf-core_modules/tests/modules/isoseq3/cluster/main.nf

16 lines
417 B
Plaintext

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