appending information to seurat object meta.data
1
5
Entering edit mode
4.4 years ago
cook.675 ▴ 220

I have a seurat object called AllCells.combined, and I wish to identify within the object all the cells that have expression of gene "Ighm" > 0; and also identify all cells that have expression of "Ighm" = 0

An easy way to do this would be to append it to the meta.data but I can't quite get it.

I tried:

AllCells.combined$IGHMPOS <- WhichCells(AllCells.combined, expression = Ighm > 0)

and got this error: Error: Cannot add more or fewer cell meta.data information without values being named with cell names

I then tried this:

AllCells.combined$IGHMPOS <- AllCells.combined["Ighm" > 0, ]

and got this error:

Error in [.Seurat(AllCells.combined, "Ighm" > 0, )Incorrect number of logical values provided to subset features`

I know its something simple Im missing

Thanks in advance!

scRNA seurat • 11k views
ADD COMMENT
1
Entering edit mode
3.8 years ago
atakanekiz ▴ 310

Try using an ifelse approach.

poscells <- WhichCells(AllCells.combined, expression = Ighm > 0)

AllCells.combined$IGHM_status <- ifelse(colnames(AllCells.combined) %in% poscells, "IGHM_POS", "IGHM_NEG"))
ADD COMMENT
1
Entering edit mode

@atakanekiz, your answer is good but the second line is missing a " " " character after "IGHM_NEG" and has a ")" too many. Most probably a typo, the right answer should read:

AllCells.combined$IGHM_status <- ifelse(colnames(AllCells.combined) %in% poscells, "IGHM_POS", "IGHM_NEG")

Cheers!

ADD REPLY
0
Entering edit mode

Good catch, fixed it now.

ADD REPLY

Login before adding your answer.

Traffic: 1564 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