-
Notifications
You must be signed in to change notification settings - Fork 0
/
8-配对l.R
188 lines (161 loc) · 4.88 KB
/
8-配对l.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
rm(list = ls())
ni = 8 #GSE62832,2个分组,配对
{options(stringsAsFactors = F)
library(GEOquery)
load("bg.Rdata")
eSet <- bg[[ni]]
exp <- exprs(eSet[[1]])
exp[1:4,1:4]
pd <- pData(eSet[[1]])
anno = eSet[[1]]@annotation
if(!require(stringr))install.packages("stringr")
library(stringr)
gse = names(bg)[ni]
print(exp[1:4,1:4])
View(pd)
}
identical(rownames(pd),colnames(exp))
group_list = rep(c("pre","post"),times = 18)
group_list=factor(group_list,levels = c("pre","post"),ordered = T)
pairinfo = factor(rep(1:18,each = 2))
#exp = log2(exp+1)
#PCA
{
dat=as.data.frame(t(exp))
library(FactoMineR)#画主成分分析图需要加载这两个包
library(factoextra)
# pca的统一操作走起
dat.pca <- PCA(dat, graph = FALSE)
fviz_pca_ind(dat.pca,
geom.ind = "point", # show points only (nbut not "text")
col.ind = group_list, # color by groups
#palette = c("#00AFBB", "#E7B800"),
addEllipses = TRUE, # Concentration ellipses
legend.title = "Groups"
)
dir.create(names(bg)[ni])
ggsave(paste0(names(bg)[ni],"/PCA.png"))
}
#热图
cg=names(tail(sort(apply(exp,1,sd)),1000))
if(!require(pheatmap))install.packages("pheatmap")
library(pheatmap)
n=exp[cg,]
#加注释分组
annotation_col=data.frame(group=group_list)
rownames(annotation_col)=colnames(n)
pheatmap(n,
show_colnames =F,
show_rownames = F,
annotation_col=annotation_col,
scale = "row")
exp[1:4,1:4]
boxplot(exp[1,]~group_list)
#差异分析,用limma包来做
#需要表达矩阵和group_list,其他都不要动
library(limma)
design=model.matrix(~group_list+pairinfo)
fit=lmFit(exp,design)
fit=eBayes(fit)
#差异基因排名
deg=topTable(fit,coef=2,number = Inf)
head(deg)
boxplot(exp[rownames(deg)[1],]~group_list)
#为deg数据框添加几列
#1.加probe_id列,把行名变成一列
library(dplyr)
deg <- mutate(deg,probe_id=rownames(deg))
#tibble::rownames_to_column()
head(deg)
#2.加symbol列,火山图要用
#id转换,查找芯片平台对应的包
eSet[[1]]@annotation
#http://www.bio-info-trainee.com/1399.html
#hugene10sttranscriptcluster
if(!require(hugene10sttranscriptcluster.db))BiocManager::install("hugene10sttranscriptcluster.db")
library(hugene10sttranscriptcluster.db)
ls("package:hugene10sttranscriptcluster.db")
ids <- toTable(hugene10sttranscriptclusterSYMBOL)
head(ids)
#merge
deg <- inner_join(deg,ids,by="probe_id")
head(deg)
#3.加change列:上调或下调,火山图要用
logFC_t=1 #不同的阈值,筛选到的差异基因数量就不一样,后面的超几何分布检验结果就大相径庭。
change=ifelse(deg$P.Value>0.01,'stable',
ifelse( deg$logFC >logFC_t,'up',
ifelse( deg$logFC < -logFC_t,'down','stable') )
)
deg <- mutate(deg,change)
head(deg)
table(deg$change)
deg <- mutate(deg,v = -log10(P.Value))
#4.加ENTREZID列,后面富集分析要用
library(ggplot2)
library(clusterProfiler)
library(org.Hs.eg.db)
s2e <- bitr(unique(deg$symbol), fromType = "SYMBOL",
toType = c( "ENTREZID"),
OrgDb = org.Hs.eg.db)
head(s2e)
head(deg)
deg <- inner_join(deg,s2e,by=c("symbol"="SYMBOL"))
head(deg)
library(dplyr)
dat <- mutate(deg,v=-log10(P.Value))
head(dat)
p <- ggplot(data = deg,
aes(x = logFC,
y = v)) +
geom_point(alpha=0.4, size=3.5,
aes(color=change)) +
scale_color_manual(values=c("blue", "grey","red"))+
geom_vline(xintercept=c(-1,1),lty=4,col="black",lwd=0.8) +
geom_hline(yintercept = -log10(0.01),lty=4,col="black",lwd=0.8) +
theme_bw()
for_label <- deg %>%
filter(abs(logFC) >4.5& P.Value< 0.01)
p +
geom_point(size = 3, shape = 1, data = for_label) +
ggrepel::geom_label_repel(
aes(label = symbol),
data = for_label,
color="black"
)
ggsave(paste0(names(bg)[ni],"/volcano.png"))
x=deg$logFC
names(x)=deg$probe_id
cg=c(names(head(sort(x),100)),
names(tail(sort(x),100)))
library(pheatmap)
n=exp[cg,]
annotation_col=data.frame(group=group_list)
rownames(annotation_col)=colnames(n)
pheatmap(n,show_colnames =F,
show_rownames = F,
scale = "row",
#cluster_cols = F,
annotation_col=annotation_col)
dev.off()
#保存
pdf(file = "heatmap.pdf")
pheatmap(n,show_colnames =F,
show_rownames = F,
scale = "row",
#cluster_cols = F,
annotation_col=annotation_col)
dev.off()
file.copy("heatmap.pdf",paste0(names(bg)[ni],"/heatmap.pdf"))
file.remove("heatmap.pdf")
# 配对样本的箱线图
data <- data.frame(pairinfo=pairinfo,group=group_list,t(exp))
library(ggplot2)
ggplot(data, aes(group,X8171172,fill=group)) +
geom_boxplot() +
geom_point(size=2, alpha=0.5) +
geom_line(aes(group=pairinfo), colour="black", linetype="11") +
xlab("") +
ylab(paste("Expression of ","CYP1B1"))+
theme_classic()+
theme(legend.position = "none")
ggsave(paste0(names(bg)[ni],"/box.png"))