-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path03_PCA_BandMEFstoiPS.R
395 lines (339 loc) · 16.5 KB
/
03_PCA_BandMEFstoiPS.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
require(tidyverse)
require(org.Mm.eg.db)
require(factoextra)
#require(princurve)
#require(corrplot)
require(RColorBrewer)
#require(scales)
##########################################
## PCA ON MOST VARIABLE GENES (EXPRESSION)
## CALCULATE COEFFVAR IN BOTH DATASETS
BM_CPMs_av_tofil <- na.omit(BM_CPMs_av)
BM_CPMs_av_tofil$CoeffVar <- (apply (BM_CPMs_av_tofil, 1, function(x) sd(x)/mean(x)))
head(BM_CPMs_av_tofil)
summary(BM_CPMs_av_tofil$CoeffVar)
#3rd quartile
mostvar <- rownames(subset(BM_CPMs_av_tofil, CoeffVar > 0.66))
# mostvar <- top_n(rownames_to_column(BM_CPMs_av_tofil,var="ENSGID"), n=500,wt = CoeffVar)$ENSGID
# mostvar <- rownames(subset(BM_CPMs_av_tofil, CoeffVar > 0))
##########################################
## EXTRACT SCALED CPMs of MOST VARIABLE GENES
vmat=subset(BM_CPMs_av_scaled, rownames(BM_CPMs_av_scaled) %in% mostvar)
vmat=na.omit(vmat)
dim(vmat)
head(vmat)
## PCA on SAMPLES
pca=prcomp((vmat),scale. = F,center=F)
plot(pca, type="l")
summary(pca)
#head(pca$rotation)
## PLOT PCA ON SCALED CPMs (COEFFVAR > 3rd Quartile)
setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/Gene_Expression_EdgeR/PCA_analysis/Most_variable_genes_CoeffVar_066/")
col=rep("maroon",nrow(pca$rotation))
col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
pdf("PCA_ScaledCPMs_Samples_CoeffVar_066.pdf")
par(pty="s")
plot(pca$rotation[,1:2], col=col, asp=0.5)
title(main = paste("PCA on samples with most variable GEx profiles",sep = ""), cex.main=0.9)
title(xlab = "41.42% of variance explained",
ylab = "18.06% of variance explained", cex.main=0.8, line=4)
text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
dev.off()
# ## PLOT PCA ON SCALED CPMs (top 500 COEFFVAR)
# setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/Gene_Expression_EdgeR/PCA_analysis/Most_variable_genes_Top500_CoeffVar/")
# col=rep("maroon",nrow(pca$rotation))
# col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
# pdf("PCA_ScaledCPMs_Samples_Top500_CoeffVar.pdf")
# par(pty="s")
# plot(pca$rotation[,1:2], col=col, asp=0.5)
# title(main = paste("PCA on samples with most variable GEx profiles",sep = ""), cex.main=0.9)
# title(xlab = "49.24% of variance explained",
# ylab = "20.30% of variance explained", cex.main=0.8, line=4)
# text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# dev.off()
## PLOT PCA ON SCALED CPMs (No Filter)
setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/Gene_Expression_EdgeR/PCA_analysis/Most_variable_genes_CoeffVar_066/")
col=rep("maroon",nrow(pca$rotation))
col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
pdf("PCA_ScaledCPMs_Samples_NoFilter.pdf")
par(pty="s")
plot(pca$rotation[,1:2], col=col, asp=0.5)
title(main = paste("PCA on samples with all GEx profiles",sep = ""), cex.main=0.9)
title(xlab = "37.86% of variance explained",
ylab = "14.99% of variance explained", cex.main=0.8, line=4)
text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
dev.off()
# Eigenvalues
eig.val <- get_eigenvalue(pca)
eig.val
# Results for Variables
res.var <- get_pca_var(pca)
res.var$coord # Coordinates
res.var$contrib # Contributions to the PCs
res.var$cos2 # Quality of representation
res.var$cor # Correlations between variables and dimensions
# Results for individuals
res.ind <- get_pca_ind(pca)
res.ind$coord # Coordinates
res.ind$contrib # Contributions to the PCs
res.ind$cos2 # Quality of representation
## PERFORM K MEANS CLUSTERING on SCALED CPMs
k <- kmeans(res.var$coord, centers = 4, nstart=25, iter.max=1000)
palette(alpha(brewer.pal(9,'Set1'), 0.5))
plot(res.var$coord, col=k$clust, pch=16,xlim=c(-1.8,0.8),ylim=c(-0.8,0.8))
title(main = paste("PCA on samples with most variable GEx profiles - kmeans",sep = ""), cex.main=0.9)
title(xlab = "41.42% of variance explained",
ylab = "18.06% of variance explained", cex.main=0.8, line=4)
text(res.var$coord[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# NoFilter
k <- kmeans(res.var$coord, centers = 4, nstart=25, iter.max=1000)
palette(alpha(brewer.pal(9,'Set1'), 0.5))
plot(res.var$coord, col=k$clust, pch=16,xlim=c(-1.2,1.5),ylim=c(-0.6,0.7))
title(main = paste("PCA on samples with all GEx profiles",sep = ""), cex.main=0.9)
title(xlab = "37.86% of variance explained",
ylab = "14.99% of variance explained", cex.main=0.8, line=4)
text(res.var$coord[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
##########################################
## EXTRACT RAW CPMs of MOST VARIABLE GENES
vmat=subset(BM_CPMs_av, rownames(BM_CPMs_av) %in% mostvar)
vmat=na.omit(vmat)
dim(vmat)
head(vmat)
## PCA on SAMPLES
pca=prcomp((vmat),scale. = F,center=F)
plot(pca, type="l")
summary(pca)
#head(pca$rotation)
## PLOT PCA ON RAW CPMs (COEFFVAR > 3rd Quartile)
setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/Gene_Expression_EdgeR/PCA_analysis/Most_variable_genes_CoeffVar_066/")
col=rep("maroon",nrow(pca$rotation))
col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
pdf("PCA_RawCPMs_Samples_CoeffVar_066.pdf")
par(pty="s")
plot(pca$rotation[,1:2], col=col, asp=0.5)
title(main = paste("PCA on samples with most variable GEx profiles",sep = ""), cex.main=0.9)
title(xlab = "78.93% of variance explained",
ylab = "08.615% of variance explained", cex.main=0.8, line=4)
text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
dev.off()
# ## PLOT PCA ON RAW CPMs (top 500 COEFFVAR)
# setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/Gene_Expression_EdgeR/PCA_analysis/Most_variable_genes_Top500_CoeffVar/")
# col=rep("maroon",nrow(pca$rotation))
# col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
# pdf("PCA_RawCPMs_Samples_Top500_CoeffVar.pdf")
# par(pty="s")
# plot(pca$rotation[,1:2], col=col, asp=0.5)
# title(main = paste("PCA on samples with most variable GEx profiles",sep = ""), cex.main=0.9)
# title(xlab = "89.13% of variance explained",
# ylab = "05.17% of variance explained", cex.main=0.8, line=4)
# text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# dev.off()
# ## PLOT PCA ON RAW CPMs (NoFilter)
# setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/Gene_Expression_EdgeR/PCA_analysis/Most_variable_genes_CoeffVar_066/")
# col=rep("maroon",nrow(pca$rotation))
# col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
# pdf("PCA_RawCPMs_Samples_NoFilter.pdf")
# par(pty="s")
# plot(pca$rotation[,1:2], col=col, asp=0.5)
# title(main = paste("PCA on samples with all GEx profiles",sep = ""), cex.main=0.9)
# title(xlab = "80.24% of variance explained",
# ylab = "13.38% of variance explained", cex.main=0.8, line=4)
# text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# dev.off()
# Eigenvalues
eig.val <- get_eigenvalue(pca)
eig.val
# Results for Variables
res.var <- get_pca_var(pca)
res.var$coord # Coordinates
res.var$contrib # Contributions to the PCs
res.var$cos2 # Quality of representation
res.var$cor # Correlations between variables and dimensions
# Results for individuals
res.ind <- get_pca_ind(pca)
res.ind$coord # Coordinates
res.ind$contrib # Contributions to the PCs
res.ind$cos2 # Quality of representation
## PERFORM K MEANS CLUSTERING on RAW CPMs
k <- kmeans(res.var$coord, centers = 5, nstart=25, iter.max=1000)
palette(alpha(brewer.pal(9,'Set1'), 0.5))
plot(res.var$coord, col=k$clust, pch=16,xlim=c(-650,50),ylim=c(-100,150))
title(main = paste("PCA on samples with most variable GEx profiles - kmeans",sep = ""), cex.main=0.9)
title(xlab = "78.93% of variance explained",
ylab = "08.615% of variance explained", cex.main=0.8, line=4)
text(res.var$coord[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# NoFilter
k <- kmeans(res.var$coord, centers = 4, nstart=25, iter.max=1000)
palette(alpha(brewer.pal(9,'Set1'), 0.5))
plot(res.var$coord, col=k$clust, pch=16,xlim=c(-350,-200),ylim=c(-100,270))
title(main = paste("PCA on samples with all GEx profiles",sep = ""), cex.main=0.9)
title(xlab = "80.24% of variance explained",
ylab = "13.38% of variance explained", cex.main=0.8, line=4)
text(res.var$coord[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
##############################
### PCA ON MOST VARIABLE EXONS
## CALCULATE COEFFVAR IN BOTH DATASETS
BM_PSIs_VTS10_av_CEx_tofil <- BM_PSIs_VTS10_av_CEx
BM_PSIs_VTS10_av_CEx_tofil$CoeffVar <- (apply (BM_PSIs_VTS10_av_CEx_tofil, 1, function(x) sd(x)/mean(x)))
head(BM_PSIs_VTS10_av_CEx_tofil)
summary(BM_PSIs_VTS10_av_CEx_tofil$CoeffVar)
#3rd quartile
mostvar <- rownames(subset(BM_PSIs_VTS10_av_CEx_tofil, CoeffVar > 0.46525))
# mostvar <- top_n(rownames_to_column(BM_PSIs_VTS10_av_CEx_tofil,var="EVENT"), n=500,wt = CoeffVar)$EVENT
# mostvar <- rownames(subset(BM_PSIs_VTS10_av_CEx_tofil, CoeffVar > 0))
###############################################
## EXTRACT SCALED VALUES of MOST VARIABLE EXONS
vmat=subset(BM_PSIs_VTS10_av_CEx_scaled, rownames(BM_PSIs_VTS10_av_CEx_scaled) %in% mostvar)
vmat=na.omit(vmat)
dim(vmat)
head(vmat)
## PCA on SAMPLES
pca=prcomp((vmat),scale. = F,center=F)
plot(pca, type="l")
summary(pca)
#head(pca$rotation)
## PLOT PCA ON SCALED PSIs (COEFFVAR > 3rd Quartile)
setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/VASTTOOLS_v2.2_FINAL_Mm10/PCA analysis/")
col=rep("maroon",nrow(pca$rotation))
col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
pdf("PCA_ScaledPSIs_Samples_CoeffVar_046.pdf")
par(pty="s")
plot(pca$rotation[,1:2], col=col, asp=0.5)
title(main = paste("PCA on samples with most variable PSIs profiles",sep = ""), cex.main=0.9)
title(xlab = "45.35% of variance explained",
ylab = "13.81% of variance explained", cex.main=0.8, line=4)
text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
dev.off()
## PLOT PCA ON SCALED PSIs (top 500 COEFFVAR)
# setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/VASTTOOLS_v2.2_FINAL_Mm10/PCA analysis/")
# col=rep("maroon",nrow(pca$rotation))
# col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
# pdf("PCA_ScaledPSIs_Samples_Top500_CoeffVar.pdf")
# par(pty="s")
# plot(pca$rotation[,1:2], col=col, asp=0.5)
# title(main = paste("PCA on samples with most variable PSIs profiles",sep = ""), cex.main=0.9)
# title(xlab = "36.11% of variance explained",
# ylab = "15.20% of variance explained", cex.main=0.8, line=4)
# text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# dev.off()
# ## PLOT PCA ON SCALED PSIs (No Filter)
# setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/VASTTOOLS_v2.2_FINAL_Mm10/PCA analysis/")
# col=rep("maroon",nrow(pca$rotation))
# col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
# pdf("PCA_ScaledPSIs_Samples_NoFilter.pdf")
# par(pty="s")
# plot(pca$rotation[,1:2], col=col, asp=0.5)
# title(main = paste("PCA on samples with all PSIs profiles",sep = ""), cex.main=0.9)
# title(xlab = "33.93% of variance explained",
# ylab = "14.67% of variance explained", cex.main=0.8, line=4)
# text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# dev.off()
# Eigenvalues
eig.val <- get_eigenvalue(pca)
eig.val
# Results for Variables
res.var <- get_pca_var(pca)
res.var$coord # Coordinates
res.var$contrib # Contributions to the PCs
res.var$cos2 # Quality of representation
res.var$cor # Correlations between variables and dimensions
# Results for individuals
res.ind <- get_pca_ind(pca)
res.ind$coord # Coordinates
res.ind$contrib # Contributions to the PCs
res.ind$cos2 # Quality of representation
## PERFORM K MEANS CLUSTERING on SCALED PSI VALUES
k <- kmeans(res.var$coord, centers = 4, nstart=25, iter.max=1000)
palette(alpha(brewer.pal(9,'Set1'), 0.5))
plot(res.var$coord, col=k$clust, pch=16,xlim=c(-1.5,1.5),ylim=c(-1.5,0.8))
title(main = paste("PCA on samples with most variable PSIs profiles",sep = ""), cex.main=0.9)
title(xlab = "45.35% of variance explained",
ylab = "13.81% of variance explained", cex.main=0.8, line=4)
text(res.var$coord[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
#Nofiltering
k <- kmeans(res.var$coord, centers = 6, nstart=25, iter.max=1000)
palette(alpha(brewer.pal(9,'Set1'), 0.5))
#plot(res.var$coord, col=k$clust, pch=16)
plot(res.var$coord, col=k$clust, pch=16,xlim=c(-1,1),ylim=c(-1.2,0.8))
title(main = paste("PCA on samples with all PSIs profiles",sep = ""), cex.main=0.9)
title(xlab = "33.93% of variance explained",
ylab = "14.67% of variance explained", cex.main=0.8, line=4)
text(res.var$coord[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
###############################################
## EXTRACT RAW PSI VALUES of MOST VARIABLE EXONS
vmat=subset(BM_PSIs_VTS10_av_CEx, rownames(BM_PSIs_VTS10_av_CEx) %in% mostvar)
vmat=na.omit(vmat)
dim(vmat)
head(vmat)
## PCA on SAMPLES
pca=prcomp((vmat),scale. = F,center=F)
plot(pca, type="l")
summary(pca)
#head(pca$rotation)
## PLOT PCA ON RAW PSIs (COEFFVAR > 3rd Quartile)
setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/VASTTOOLS_v2.2_FINAL_Mm10/PCA analysis/")
col=rep("maroon",nrow(pca$rotation))
col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
pdf("PCA_RawPSIs_Samples_CoeffVar_046.pdf")
par(pty="s")
plot(pca$rotation[,1:2], col=col, asp=0.5, ylim=c(-0.4,0.4))
title(main = paste("PCA on samples with most variable PSIs profiles",sep = ""), cex.main=0.9)
title(xlab = "73.97% of variance explained",
ylab = "15.53% of variance explained", cex.main=0.8, line=4)
text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
dev.off()
## PLOT PCA ON RAW PSIs (top 500 COEFFVAR)
# setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/VASTTOOLS_v2.2_FINAL_Mm10/PCA analysis/")
# col=rep("maroon",nrow(pca$rotation))
# col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
# pdf("PCA_RawPSIs_Samples_Top500_CoeffVar.pdf")
# par(pty="s")
# plot(pca$rotation[,1:2], col=col, asp=0.5)
# title(main = paste("PCA on samples with most variable PSIs profiles",sep = ""), cex.main=0.9)
# title(xlab = "93.25% of variance explained",
# ylab = "02.37% of variance explained", cex.main=0.8, line=4)
# text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# dev.off()
# ## PLOT PCA ON RAW PSIs (NoFilter)
# setwd("~/Dropbox (CRG ADV)/Personal_Claudia/Cl@udia/PhD/Data/1601 CEBPa_NEW/VASTTOOLS_v2.2_FINAL_Mm10/PCA analysis/")
# col=rep("maroon",nrow(pca$rotation))
# col[ grep("B_", rownames(pca$rotation)) ] = "darkslategray"
# pdf("PCA_RawPSIs_Samples_NoFilter.pdf")
# par(pty="s")
# plot(pca$rotation[,1:2], col=col, asp=0.5)
# title(main = paste("PCA on samples with all PSIs profiles",sep = ""), cex.main=0.9)
# title(xlab = "96.43% of variance explained",
# ylab = "01.689% of variance explained", cex.main=0.8, line=4)
# text(pca$rotation[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
# dev.off()
# Eigenvalues
eig.val <- get_eigenvalue(pca)
eig.val
# Results for Variables
res.var <- get_pca_var(pca)
res.var$coord # Coordinates
res.var$contrib # Contributions to the PCs
res.var$cos2 # Quality of representation
res.var$cor # Correlations between variables and dimensions
# Results for individuals
res.ind <- get_pca_ind(pca)
res.ind$coord # Coordinates
res.ind$contrib # Contributions to the PCs
res.ind$cos2 # Quality of representation
## PERFORM K MEANS CLUSTERING on SCALED RAW VALUES
k <- kmeans(res.var$coord, centers = 5, nstart=25, iter.max=1000)
palette(alpha(brewer.pal(9,'Set1'), 0.5))
plot(res.var$coord, col=k$clust, pch=16,xlim=c(-35,-17),ylim=c(-20,20))
title(main = paste("PCA on samples with most variable PSIs profiles",sep = ""), cex.main=0.9)
title(xlab = "73.97% of variance explained",
ylab = "15.53% of variance explained", cex.main=0.8, line=4)
text(res.var$coord[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)
#NoFilter
k <- kmeans(res.var$coord, centers = 4, nstart=25, iter.max=1000)
palette(alpha(brewer.pal(9,'Set1'), 0.5))
#plot(res.var$coord, col=k$clust, pch=16)
plot(res.var$coord, col=k$clust, pch=16,xlim=c(-63,-56),ylim=c(-15,15))
title(main = paste("PCA on samples with all PSIs profiles",sep = ""), cex.main=0.9)
title(xlab = "96.43% of variance explained",
ylab = "01.689% of variance explained", cex.main=0.8, line=4)
text(res.var$coord[,1:2], labels=rownames(pca$rotation),pos=3,cex=0.7,col = col)