Mercurial > repos > iuc > dropletutils
view scripts/generateTestData.Rscript @ 8:a9caad671439 draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/ commit 9d465ee72398a8a74fe499a2e4b74f507a5845cc"
author | iuc |
---|---|
date | Mon, 05 Jul 2021 13:40:00 +0000 |
parents | 4cd9f0008d9c |
children |
line wrap: on
line source
## ## conda install bioconductor-dropletutils bioconductor-dnabarcodes ## suppressWarnings(suppressPackageStartupMessages(library(DropletUtils))) suppressWarnings(suppressPackageStartupMessages(library(DNABarcodes))) library(Matrix) ## Matrix with no column barcodes set.seed(100) ##my.counts <- DropletUtils:::simCounts() my.counts <- DropletUtils:::simCounts(large.rate=0.01, nlarge=500, nsmall=50, nempty=500) ## Generate barcodes (size=10, edit=3) and set as headers barcodes <- create.pool(10) colnames(my.counts) <- barcodes[1:ncol(my.counts)] sce <- SingleCellExperiment(assays = list(counts = as.matrix(my.counts))) writeTSV <- function(fileout, obj){ write.table(as.matrix(obj), file=fileout, col.names=NA, sep='\t', quote=FALSE) } writeOut <- function(counts, fileout, typeout){ if (typeout == "tsv"){ writeTSV(fileout, counts) } else if (typeout == "h5ad"){ write10xCounts(fileout, counts, type="HDF5", overwrite=TRUE) } else if (typeout == "directory"){ write10xCounts(fileout, Matrix(counts), type="sparse", overwrite=TRUE) } } writeOut(Matrix(counts(sce)), "test-data", type="directory") writeOut(counts(sce), "test-data.h5ad", type="h5ad") writeOut(counts(sce), "test-data.tsv", type="tsv")