2021-12-02 14:27:20 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { UNTAR } from '../../../../modules/untar/main.nf'
|
|
|
|
include { CELLRANGER_MKFASTQ } from '../../../../modules/cellranger/mkfastq/main.nf'
|
|
|
|
|
|
|
|
workflow test_cellranger_mkfastq_simple {
|
|
|
|
|
|
|
|
simple_csv = file("https://cf.10xgenomics.com/supp/cell-exp/cellranger-tiny-bcl-simple-1.2.0.csv", checkIfExists: true)
|
2022-03-21 13:49:28 +00:00
|
|
|
tiny_bcl = [ [], file("https://cf.10xgenomics.com/supp/cell-exp/cellranger-tiny-bcl-1.2.0.tar.gz", checkIfExists: true) ]
|
2021-12-02 14:27:20 +00:00
|
|
|
|
|
|
|
UNTAR ( tiny_bcl )
|
|
|
|
|
2022-03-21 13:49:28 +00:00
|
|
|
CELLRANGER_MKFASTQ ( UNTAR.out.untar.map{ it[1] }, simple_csv)
|
2021-12-02 14:27:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_cellranger_mkfastq_illumina {
|
|
|
|
|
|
|
|
samplesheet_csv = file("https://cf.10xgenomics.com/supp/cell-exp/cellranger-tiny-bcl-samplesheet-1.2.0.csv", checkIfExists: true)
|
2022-03-21 13:49:28 +00:00
|
|
|
tiny_bcl = [ [], file("https://cf.10xgenomics.com/supp/cell-exp/cellranger-tiny-bcl-1.2.0.tar.gz", checkIfExists: true) ]
|
2021-12-02 14:27:20 +00:00
|
|
|
|
|
|
|
UNTAR ( tiny_bcl )
|
|
|
|
|
2022-03-21 13:49:28 +00:00
|
|
|
CELLRANGER_MKFASTQ ( UNTAR.out.untar.map{ it[1] }, samplesheet_csv)
|
2021-12-02 14:27:20 +00:00
|
|
|
}
|