-
Hi everyone, I am trying to read Cellranger Count output files into R using Read10X(). I have a folder containing all 3 required files: barcodes.tsv.gz, features.tsv.gz, and matrix.mtx.gz. On a previous (completely separate experiment) when I use Read10X() I get a Large List in the environment, but for this experiment I'm only getting a Large dgCMatrix. As a result I'm not able to use the downstream commands like CreateSeuratObject() and creating Gene Expression and Antibody Capture assays. The FastQ files were processed through Cellranger the exact same way both times. Any insight would be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey, not the seurat team, just a user looking to help out. Documentation on the command suggests this might be something you want to look into: "If features.csv indicates the data has multiple data types, a list containing a sparse matrix of the data from each type will be returned. Otherwise a sparse matrix containing the expression data will be returned. " You should be able to make seurat objects with large dgCMatrices though, im not sure what your barrier is there. |
Beta Was this translation helpful? Give feedback.
Hey, not the seurat team, just a user looking to help out. Documentation on the command suggests this might be something you want to look into: "If features.csv indicates the data has multiple data types, a list containing a sparse matrix of the data from each type will be returned. Otherwise a sparse matrix containing the expression data will be returned. "
You should be able to make seurat objects with large dgCMatrices though, im not sure what your barrier is there.