Closed Ping-lin14 closed 3 years ago
Hi @Ping-lin14
The issue is associated with as.matrix()
trying to convert a really large sparse matrix (raw_feature_bc_matrix
in your case) into a dense one. filtered_feature_bc_matrix
should be the input to the read10X
function (raw vs filtered gene-barcode matrix: https://kb.10xgenomics.com/hc/en-us/articles/360001892491-What-is-the-difference-between-the-filtered-and-raw-gene-barcode-matrix-).
If you are only trying to go through the tutorial, please download the RNA data from here (https://umich.app.box.com/s/wip2nzpktn6fdnlpc83o1u7anjn4ue2c) and run the following code
rna1 <- readRDS('~/Downloads/GSM4138872_scRNA_BMMC_D1T1.rds')
rna2 <- readRDS('~/Downloads/GSM4138873_scRNA_BMMC_D1T2.rds')
bmmc.rna <- cbind(rna1,rna2)
Best, Chao
Thank you very much for your answers.
Hi
I receive an error when I try to merge ATAC data with RNA data
int.bmmc <- scaleNotCenter(int.bmmc)
Error in asMethod(object) : Cholmod error 'problem too large' at file ../Core/cholmod_dense.c, line 102
I want to know what could be causing this? How to solve it?
I use windows 10 platform. code: