mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
12 lines
291 B
Text
12 lines
291 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { CELLRANGER_MKGTF } from '../../../../modules/cellranger/mkgtf/main.nf'
|
||
|
|
||
|
workflow test_cellranger_mkgtf {
|
||
|
gtf = file(params.test_data['homo_sapiens']['genome']['genome_gtf'], checkIfExists: true)
|
||
|
|
||
|
CELLRANGER_MKGTF ( gtf )
|
||
|
}
|