mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
17 lines
539 B
Text
17 lines
539 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { CELLRANGER_MKREF } from '../../../../modules/cellranger/mkref/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow test_cellranger_mkref {
|
||
|
|
||
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
||
|
gtf = file(params.test_data['homo_sapiens']['genome']['genome_gtf'], checkIfExists: true)
|
||
|
reference_name = "homo_sapiens_chr22_reference"
|
||
|
|
||
|
CELLRANGER_MKREF ( fasta,
|
||
|
gtf,
|
||
|
reference_name )
|
||
|
}
|