shows the expression of genes in specific cell types in Heatmap
1
0
Entering edit mode
2.8 years ago
Maria17 ▴ 40

Hi All,

I'm working on single-cell RNA seq data with the Seurat package. I want to check the expression of some genes in some of the cell types with a heat map. currently, this code shows all of the cell types :

`dittoHeatmap(Seurat.integrated, genes,
         annot.by = c("PatientID", "CellType"))`

how can I show the expression of genes just in some of my cell types in heatmap?

Any recommendations or solutions would be appreciated.

Thanks

Maria

dittoseq RNA-seq Seurat • 1.8k views
ADD COMMENT
0
Entering edit mode
2.8 years ago
Wocher33 ▴ 10

Hi Maria,

you can subset your cells and then plot

seurat.subset <- subset(seurat.integrated, idents = "clusterofinterest")
dittoHeatmap(seurat.subset ,genes,
         annot.by = c("PatientID", "CellType"))

Is that what you are looking for?

Cheers

ADD COMMENT
0
Entering edit mode

thank you. when subset by cell type name it greps cell type(T-cells) in all clusters but I have 5 clusters which I assigned to T cell. I want to extract these five clusters and check the gene expression.

ADD REPLY
0
Entering edit mode

You can also subset by multiple clusters by combining their names as characters to a vector, eg.:

seurat.subset <- subset(seurat.integrated, idents = c("cluster1", "cluster2", "cluster3",...))
ADD REPLY

Login before adding your answer.

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