CreateSeuratObject: No cell names (colnames) names present in the input matrix
2
2
Entering edit mode
3.0 years ago
my.kim ▴ 30

I did scRNA-seq using patient PBMC, 4 biological replicates. Each PBMC was tagged with 4 different types of hashtag oligos and subjected to multiplexing. Using fastq files, cellranger multi was performed and 4 matrices were generated. Using Seurat, I imported one output matrix to R studio using Read10X as followsfirst error. Next, when I used CreateSeuratOjbect and encountered this error second error. My data contains two different types of information where one is gene expression and the other multiplexing capture data layout data layout.

I think it might be due to the coexistence of two different datasets, based on the message "10X data contains more than one type and is being returned as a list containing matrices of each type." Or, If I can designate the name of the column in my dataset, Seurat may read my data.

What do you think?

cellhashing seurat multiplexing scRNA-seq • 9.6k views
ADD COMMENT
0
Entering edit mode

Future suggestion. Copy and paste actual data (and use the option to format it correctly as indicated below) where there is code. Posting screenshots makes it hard for people to copy/try your code.

ADD REPLY
5
Entering edit mode
2.9 years ago
Adam ▴ 50

I had the exact same problem, doing the exact same experiment, haha.

Reading your question though got me to the answer.

Replace:

CreateSeuratObject(counts = HC1.data , project = "HC1")

with

CreateSeuratObject(counts = HC1.data$`Gene Expression` , project = "HC1")

(Note, Gene Expression is in quotes)

ADD COMMENT
0
Entering edit mode

Please use the formatting bar (especially the code option) to present your post better. I've done it for you this time.
code_formatting

ADD REPLY
0
Entering edit mode
2.4 years ago
Väiski • 0

I was also using Multiplex oligos and had this problem. Adam's suggestion worked. Thank you.

ADD COMMENT

Login before adding your answer.

Traffic: 3256 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6