seurat对象处理

Seurat是单细胞分析经常使用的分析包。seurat对象的处理是分析的一个难点,这里我根据我自己的理解整理了下常用的seurat对象处理的一些操作,有不足或者错误的地方希望大家指正~
首先是从10X数据或者其他数据生成一个seurat对象(这里直接拷贝的官网的教程https://satijalab.org/seurat/essential_commands.html)也可以是其他的代码。

pbmc.counts <- Read10X(data.dir = "~/Downloads/pbmc3k/filtered_gene_bc_matrices/hg19/")
pbmc <- CreateSeuratObject(counts = pbmc.counts)

首先在Rstudio中运行帮助?seurat

Each Seurat object has a number of slots which store information. Key slots to access are listed below.

Slots:
raw.data
The raw project data
data
The normalized expression matrix (log-scale)
scale.data
scaled (default is z-scoring each gene) expression matrix; used for dimmensional reduction and heatmap visualization
var.genes
Vector of genes exhibiting high variance across single cells
is.expr
Expression threshold to determine if a gene is expressed (0 by default)
ident
THe 'identity class' for each cell
meta.data
Contains meta-information about each cell, starting with number of genes detected (nGene) and the original identity class (orig.ident); more information is added using AddMetaData
project.name
Name of the project (for record keeping)
dr
List of stored dimmensional reductions; named by technique
assay
List of additional assays for multimodal analysis; named by technique
hvg.info
The output of the mean/variability analysis for all genes
imputed
Matrix of imputed gene scores
cell.names
Names of all single cells (column names of the expression matrix)
cluster.tree
List where the first element is a phylo object containing the phylogenetic tree relating different identity classes
snn
Spare matrix object representation of the SNN graph
calc.params
Named list to store all calculation-related parameter choices
kmeans
Stores output of gene-based clustering from DoKMeans
spatial
Stores internal data and calculations for spatial mapping of single cells
misc
Miscellaneous spot to store any data alongisde the object (for example, gene lists)
version
Version of package used in object creation

但在实际的分析中没有这么多变量。大家可以用@或者$来获取有的变量。

使用$获取的变量截图(不同的数据可能略有差异)

上面我在后面分析用到的是orig.identgroup还有seurat_clusters变量,这里分别存储的是样本名,分组以及cluster信息。

1、基本信息获取

先来直接输出seurat对象看看:

> pbmc # 测试数据,进行了PCA和UMAP分析
An object of class Seurat 
25540 features across 46636 samples within 2 assays 
Active assay: integrated (2000 features, 2000 variable features)
 1 other assay present: RNA
 2 dimensional reductions calculated: pca, umap

一些可以查询和提取的基本信息:

colnames(x = pbmc)  # 各个细胞的编号
Cells(pbmc)   # 和上面的一样,各个细胞的编号
rownames(x = pbmc)   # 基因名
ncol(x = pbmc)   #列数
nrow(x = pbmc)   #行数
dim(pbmc)  # 行数和列数
#  获取细胞类型
Idents(object = pbmc)
levels(pbmc)
table(Idents(pbmc))  # 获取每个细胞类型的细胞数目表格
# 其他的一些细胞类型的处理
# Stash cell identity classes
pbmc[["old.ident"]] <- Idents(object = pbmc)
pbmc <- StashIdent(object = pbmc, save.name = "old.ident")

# Set identity classes
Idents(object = pbmc) <- "CD4 T cells"
Idents(object = pbmc, cells = 1:10) <- "CD4 T cells"

# Set identity classes to an existing column in meta data
Idents(object = pbmc, cells = 1:10) <- "orig.ident"
Idents(object = pbmc) <- "orig.ident"

# Rename identity classes
pbmc <- RenameIdents(object = pbmc, `CD4 T cells` = "T Helper cells")


我们可以直接根据levels(pbmc)获取所有的细胞类型

2、subset函数筛选

# 筛选某一种或多种细胞类型
subset(x = pbmc, idents = "B cells")
subset(x = pbmc, idents = c("CD4 T cells", "CD8 T cells"), invert = TRUE)
# 还可以根据表达量的值来进行筛选
# Subset on the expression level of a gene/feature
subset(x = pbmc, subset = MS4A1 > 3)
# Subset on a combination of criteria
subset(x = pbmc, subset = MS4A1 > 3 & PC1 > 5)
subset(x = pbmc, subset = MS4A1 > 3, idents = "B cells")
# Subset on a value in the object meta data
subset(x = pbmc, subset = orig.ident == "Replicate1")
# Downsample the number of cells per identity class
subset(x = pbmc, downsample = 100)
#筛选基因
subset(x = pbmc_small, features = VariableFeatures(object = pbmc_small))

# 也可以使用数组的形式提取
pbmc_small_sub = pbmc_small[,pbmc_small@meta.data$seurat_clusters %in% c(0,2)]
pbmc_small_sub = pbmc_small[, Idents(pbmc_small) %in% c( "T cell" ,  "B cell" )]  # 需要此时的pbmc_small数据Idents(pbmc_small)为细胞类型

3、数据获取

# 读取保存在@meta.data中的数据
# View metadata data frame, stored in object@meta.data
pbmc[[]]

# 提取某一类型的数据
# Retrieve specific values from the metadata
pbmc$nCount_RNA
pbmc[[c("percent.mito", "nFeature_RNA")]]

# 增加分组信息 
# Add metadata, see ?AddMetaData
random_group_labels <- sample(x = c("g1", "g2"), size = ncol(x = pbmc), replace = TRUE)
pbmc$groups <- random_group_labels
# 使用GetAssayData函数获取'counts', 'data'和'scale.data'信息
# Retrieve or set data in an expression matrix ('counts', 'data', and 'scale.data')
GetAssayData(object = pbmc, slot = "counts")
pbmc <- SetAssayData(object = pbmc, slot = "scale.data", new.data = new.data)
# Get cell embeddings and feature loadings
Embeddings(object = pbmc, reduction = "pca")
Loadings(object = pbmc, reduction = "pca")
Loadings(object = pbmc, reduction = "pca", projected = TRUE)
# FetchData can pull anything from expression matrices, cell embeddings, or metadata
FetchData(object = pbmc, vars = c("PC_1", "percent.mito", "MS4A1"))

因为不同版本中的变量可能会有变化,这里的FetchData的前缀可以从Key(pbmc)获取,比如

4、计算

# 获取平均表达量
Idents(scRNA_data) <- "seurat_clusters"   # 这一步可以指定要计算哪一个分组的平均表达量,可以选择细胞类型("CellType")cluster("seurat_clusters")或者是样本类型("orig.ident"),要注意这里的变量名称不一定正确,要根据数据中的具体变量来指定
AverageExp <- AverageExpression(scRNA_data)
expr <- AverageExp$RNA
# 增加分组前缀,这里增加的是"Cluster"
for(i in 1:ncol(expr)){colnames(expr)[i] = paste("Cluster", colnames(expr)[i],sep = "")}
expr截图

5、数据替换/修改

有时候需要对seurat对象的数据进行替换或修改

library(Seurat)
# 替换cell ID名称,-1改成_1
new_obj <- RenameCells(obj, new.names=gsub("-1", "_1", colnames(obj)))
# 如果有多个样本,筛选细胞
barcode_names <- obj$orig.ident
sampleA_barcode_name = attr(x[x=="sampleA"],"names")

一些参考资料:
1、https://satijalab.org/seurat/essential_commands.html
2、https://satijalab.org/seurat/v3.0/interaction_vignette.html
3、https://www.jianshu.com/p/d43f16bdfed9

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343