CreateSeuratObject
error: No cell names (colnames) names present in the input matrix
#92
-
Problem: When trying to a dataset from my lab, I am unable to create the seurat object. I get the following errors:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is likely due to multiple assays being present in the cellranger output, such as a cite-seq panel. We will discuss how to load and use that data in a later lecture. The |
Beta Was this translation helpful? Give feedback.
This is likely due to multiple assays being present in the cellranger output, such as a cite-seq panel. We will discuss how to load and use that data in a later lecture. The
CreateSeuratObject()
function expects only one matrix for one assay: gene expression. TheRead10X_h5
function probably returned a list of matrices, so you should specify the gene expression matrix in theCreateSeuratObject
call. You can read up on the Seurat functionCreateAssayObject
for how to provide additional assays to your object.