-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.Rhistory
512 lines (512 loc) · 31.2 KB
/
.Rhistory
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
if(length(curparents)==0){NA}else{ #for each row in gsea, extract the parents (j is the child)
overlaps <- sapply(curparents, function(i) ratiomat[j,i]) #extract overlap values for all parents (normalized by the set size of the child)
parent <- curparents[which(overlaps==max(overlaps))] #choose the parent with the highest overlap value. This could lead to several parents
overlaps2 <- ratiomat[ rep(j,length(parent)) , parent ] #extract overlap values for all parents (normalized by the set size of the parent)
parent <- ifelse(length(parent)==1, parent, parent[which(overlaps2==max(overlaps2))][1] ) #choose the parent with the highest overlap value. Still, this could leave several parents, which is why we just pick the first one
return(parent)
}
})
parent <- ifelse(is.na(parent), gsea$condenseID, parent) #if there is no parent, the child becomes its own parent
gsea$condenseParentID <- unlist(parent)
gsea$condenseSurvive <- ifelse(gsea$condenseID %in% eaten, FALSE, TRUE)
View(gsea)
library(gseaCondenser)
devtools::document()
devtools::document()
library(gseaCondenser)
library(gseaCondenser)
library(gseaCondenser)
library(gseaCondenser)
library(gseaCondenser)
library(gseaCondenser)
gsea <- gseaCondenser::myGsea
View(gsea)
gsea <- condenseGsea(gsea, finalParents=c("GO:0006508"), colname = "GO_ID")
gsea <- condenseGsea(gsea, finalParents=c("GO:0006508"), colname = "pathway")
gsea <- condenseGsea(gsea, finalParents=c("GO:0006508"), namecol = "pathway")
View(gsea)
gsea <- condenseGsea(gsea, finalParents=c("GO:0006508", "GO:0002576"), namecol = "pathway")
#' @param sep charachter. What genes in the column string? E.g. if a cell of the column would look like "HOXA9,HOXA3", you need to set sep=","
#' @param similarity number, what has to be the minimum gene overlap between two terms in order for one to be regarded as redundant?
#' @return data.frame similar to the input, but with 3 added columns: condenseID has a simple numeric ID for each row. condenseChildren lists the IDs of all sets that were eaten by this set. condenseDropout states whether or not this set was eaten itself.
#' @export
#' @examples
#' library(gseaCondenser)
#'
#' gsea <- gseaCondenser::myGsea
#' gsea <- condenseGsea(gsea, similarity=0.3)
#' head(gsea)
condenseGsea <- function(gsea, colname="genes", sep=",", similarity=0.9, n_finalParents=NULL, finalParents=NULL, namecol=NULL){
if(!is.null(n_finalParents) | !is.null(finalParents)){
message("Similarity cutoff will be ignored, because n_finalParents was defined!!!")
similarity <- -1
}
gsea$condenseID <- seq(nrow(gsea))
genes <- strsplit(gsea[,colname], split=sep)
#ratiomat will become matrix where each row is a set and each column is a set. The cells will contain the percentage of overlap between the sets.
ratiomat <- sapply(genes, function(x) sapply(genes, function(y) length(intersect(x,y)) )) #first, the cells contain absolute numbers
ratiomat <- as.data.frame(ratiomat)
rownames(ratiomat) <- NULL
colnames(ratiomat) <- seq(nrow(gsea))
ratiomat <- apply(ratiomat, 2, function(x) x/max(x)) #ratio is intersect of the sets vs. set size (of the column set)
ratiomat <- as.data.frame(ratiomat)
# define possible parents (only needed in case n_finalParents is defined)
possibleParents <- seq(nrow(gsea))
if(!is.null(finalParents)){
if(is.null(namecol)) stop("please provide a column name for the column containing the pathway names")
possibleParents <- which(gsea[,namecol] %in% finalParents)
}
if(!is.null(n_finalParents)){
cumsim <- apply(ratiomat, 1, var)
names(cumsim) <- seq_along(cumsim)
possibleParents <- as.numeric(head(names(cumsim[order(cumsim)]), n_finalParents)) #take those that have the least(!) variance in correlations
}
#each time a similarity value reaches the threshold, the smaller set's ID is added to "eaten" and to the "condenseChildren" column of the bigger set
eaten <- NA
gsea$condenseChildren <- ""
gsea$condenseParents <- ""
for(i in seq(nrow(ratiomat))) { #the ratio is intersect/n (number of genes of the column set), So j
for(j in seq(ncol(ratiomat))){
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & i %in% possibleParents & (ratiomat[i,j] > ratiomat[j,i] | !j %in% possibleParents)){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
}
}
gsea$condenseChildren <- gsub("^,","",gsea$condenseChildren)
gsea$condenseParents <- gsub("^,","",gsea$condenseParents)
parents <- strsplit(sapply(gsea$condenseParents, function(x) x), split=",")
parents <- lapply(parents, as.numeric)
#the best parent will be determined by which parent shares the most genes with the child
parent <- lapply(seq_along(parents), function(j) {
curparents <- parents[[j]]
if(length(curparents)==0){NA}else{ #for each row in gsea, extract the parents (j is the child)
overlaps <- sapply(curparents, function(i) ratiomat[j,i]) #extract overlap values for all parents (normalized by the set size of the child)
parent <- curparents[which(overlaps==max(overlaps))] #choose the parent with the highest overlap value. This could lead to several parents
overlaps2 <- ratiomat[ rep(j,length(parent)) , parent ] #extract overlap values for all parents (normalized by the set size of the parent)
parent <- ifelse(length(parent)==1, parent, parent[which(overlaps2==max(overlaps2))][1] ) #choose the parent with the highest overlap value. Still, this could leave several parents, which is why we just pick the first one
return(parent)
}
})
parent <- ifelse(is.na(parent), gsea$condenseID, parent) #if there is no parent, the child becomes its own parent
gsea$condenseParentID <- unlist(parent)
gsea$condenseSurvive <- ifelse(gsea$condenseID %in% eaten, FALSE, TRUE)
return(gsea)
}
gsea <- condenseGsea(gsea, finalParents=c("GO:0006508", "GO:0002576"), namecol = "pathway")
View(gsea)
library(gseaCondenser)
#' @param sep charachter. What genes in the column string? E.g. if a cell of the column would look like "HOXA9,HOXA3", you need to set sep=","
#' @param similarity number, what has to be the minimum gene overlap between two terms in order for one to be regarded as redundant?
#' @return data.frame similar to the input, but with 3 added columns: condenseID has a simple numeric ID for each row. condenseChildren lists the IDs of all sets that were eaten by this set. condenseDropout states whether or not this set was eaten itself.
#' @export
#' @examples
#' library(gseaCondenser)
#'
#' gsea <- gseaCondenser::myGsea
#' gsea <- condenseGsea(gsea, similarity=0.3)
#' head(gsea)
condenseGsea <- function(gsea, colname="genes", sep=",", similarity=0.9, n_finalParents=NULL, finalParents=NULL, namecol=NULL){
if(!is.null(n_finalParents) | !is.null(finalParents)){
message("Similarity cutoff will be ignored, because n_finalParents was defined!!!")
similarity <- -1
}
gsea$condenseID <- seq(nrow(gsea))
genes <- strsplit(gsea[,colname], split=sep)
#ratiomat will become matrix where each row is a set and each column is a set. The cells will contain the percentage of overlap between the sets.
ratiomat <- sapply(genes, function(x) sapply(genes, function(y) length(intersect(x,y)) )) #first, the cells contain absolute numbers
ratiomat <- as.data.frame(ratiomat)
rownames(ratiomat) <- NULL
colnames(ratiomat) <- seq(nrow(gsea))
ratiomat <- apply(ratiomat, 2, function(x) x/max(x)) #ratio is intersect of the sets vs. set size (of the column set)
ratiomat <- as.data.frame(ratiomat)
# define possible parents (only needed in case n_finalParents is defined)
possibleParents <- seq(nrow(gsea))
if(!is.null(finalParents)){
if(is.null(namecol)) stop("please provide a column name for the column containing the pathway names")
possibleParents <- which(gsea[,namecol] %in% finalParents)
}
if(!is.null(n_finalParents)){
cumsim <- apply(ratiomat, 1, var)
names(cumsim) <- seq_along(cumsim)
possibleParents <- as.numeric(head(names(cumsim[order(cumsim)]), n_finalParents)) #take those that have the least(!) variance in correlations
}
#each time a similarity value reaches the threshold, the smaller set's ID is added to "eaten" and to the "condenseChildren" column of the bigger set
eaten <- NA
gsea$condenseChildren <- ""
gsea$condenseParents <- ""
for(i in seq(nrow(ratiomat))) { #the ratio is intersect/n (number of genes of the column set), So j
for(j in seq(ncol(ratiomat))){
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & #the similarity threshold has to be passed
i %in% possibleParents & # i has to be a listed
(
ratiomat[i,j] > ratiomat[j,i] | #the parent has to be bigger than the child (and not the two cannot be the same)
!j %in% possibleParents | #if j is not listed, than i can be a parent even if it is smaller than j
(i=j | !is.nul(finalParents)) #inormally a term does not become its own parent, but if it is one of the listed finalParents, it will be
)
){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
}
}
gsea$condenseChildren <- gsub("^,","",gsea$condenseChildren)
gsea$condenseParents <- gsub("^,","",gsea$condenseParents)
parents <- strsplit(sapply(gsea$condenseParents, function(x) x), split=",")
parents <- lapply(parents, as.numeric)
#the best parent will be determined by which parent shares the most genes with the child
parent <- lapply(seq_along(parents), function(j) {
curparents <- parents[[j]]
if(length(curparents)==0){NA}else{ #for each row in gsea, extract the parents (j is the child)
overlaps <- sapply(curparents, function(i) ratiomat[j,i]) #extract overlap values for all parents (normalized by the set size of the child)
parent <- curparents[which(overlaps==max(overlaps))] #choose the parent with the highest overlap value. This could lead to several parents
overlaps2 <- ratiomat[ rep(j,length(parent)) , parent ] #extract overlap values for all parents (normalized by the set size of the parent)
parent <- ifelse(length(parent)==1, parent, parent[which(overlaps2==max(overlaps2))][1] ) #choose the parent with the highest overlap value. Still, this could leave several parents, which is why we just pick the first one
return(parent)
}
})
parent <- ifelse(is.na(parent), gsea$condenseID, parent) #if there is no parent, the child becomes its own parent
gsea$condenseParentID <- unlist(parent)
gsea$condenseSurvive <- ifelse(gsea$condenseID %in% eaten, FALSE, TRUE)
return(gsea)
}
gsea <- gseaCondenser::myGsea
gsea <- condenseGsea(gsea, finalParents=c("GO:0006508", "GO:0002576"), namecol = "pathway")
#' @param sep charachter. What genes in the column string? E.g. if a cell of the column would look like "HOXA9,HOXA3", you need to set sep=","
#' @param similarity number, what has to be the minimum gene overlap between two terms in order for one to be regarded as redundant?
#' @return data.frame similar to the input, but with 3 added columns: condenseID has a simple numeric ID for each row. condenseChildren lists the IDs of all sets that were eaten by this set. condenseDropout states whether or not this set was eaten itself.
#' @export
#' @examples
#' library(gseaCondenser)
#'
#' gsea <- gseaCondenser::myGsea
#' gsea <- condenseGsea(gsea, similarity=0.3)
#' head(gsea)
condenseGsea <- function(gsea, colname="genes", sep=",", similarity=0.9, n_finalParents=NULL, finalParents=NULL, namecol=NULL){
if(!is.null(n_finalParents) | !is.null(finalParents)){
message("Similarity cutoff will be ignored, because n_finalParents was defined!!!")
similarity <- -1
}
gsea$condenseID <- seq(nrow(gsea))
genes <- strsplit(gsea[,colname], split=sep)
#ratiomat will become matrix where each row is a set and each column is a set. The cells will contain the percentage of overlap between the sets.
ratiomat <- sapply(genes, function(x) sapply(genes, function(y) length(intersect(x,y)) )) #first, the cells contain absolute numbers
ratiomat <- as.data.frame(ratiomat)
rownames(ratiomat) <- NULL
colnames(ratiomat) <- seq(nrow(gsea))
ratiomat <- apply(ratiomat, 2, function(x) x/max(x)) #ratio is intersect of the sets vs. set size (of the column set)
ratiomat <- as.data.frame(ratiomat)
# define possible parents (only needed in case n_finalParents is defined)
possibleParents <- seq(nrow(gsea))
if(!is.null(finalParents)){
if(is.null(namecol)) stop("please provide a column name for the column containing the pathway names")
possibleParents <- which(gsea[,namecol] %in% finalParents)
}
if(!is.null(n_finalParents)){
cumsim <- apply(ratiomat, 1, var)
names(cumsim) <- seq_along(cumsim)
possibleParents <- as.numeric(head(names(cumsim[order(cumsim)]), n_finalParents)) #take those that have the least(!) variance in correlations
}
#each time a similarity value reaches the threshold, the smaller set's ID is added to "eaten" and to the "condenseChildren" column of the bigger set
eaten <- NA
gsea$condenseChildren <- ""
gsea$condenseParents <- ""
for(i in seq(nrow(ratiomat))) { #the ratio is intersect/n (number of genes of the column set), So j
for(j in seq(ncol(ratiomat))){
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & #the similarity threshold has to be passed
i %in% possibleParents & # i has to be a listed
(
ratiomat[i,j] > ratiomat[j,i] | #the parent has to be bigger than the child (and not the two cannot be the same)
!j %in% possibleParents | #if j is not listed, than i can be a parent even if it is smaller than j
(i=j | !is.null(finalParents)) #inormally a term does not become its own parent, but if it is one of the listed finalParents, it will be
)
){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
}
}
gsea$condenseChildren <- gsub("^,","",gsea$condenseChildren)
gsea$condenseParents <- gsub("^,","",gsea$condenseParents)
parents <- strsplit(sapply(gsea$condenseParents, function(x) x), split=",")
parents <- lapply(parents, as.numeric)
#the best parent will be determined by which parent shares the most genes with the child
parent <- lapply(seq_along(parents), function(j) {
curparents <- parents[[j]]
if(length(curparents)==0){NA}else{ #for each row in gsea, extract the parents (j is the child)
overlaps <- sapply(curparents, function(i) ratiomat[j,i]) #extract overlap values for all parents (normalized by the set size of the child)
parent <- curparents[which(overlaps==max(overlaps))] #choose the parent with the highest overlap value. This could lead to several parents
overlaps2 <- ratiomat[ rep(j,length(parent)) , parent ] #extract overlap values for all parents (normalized by the set size of the parent)
parent <- ifelse(length(parent)==1, parent, parent[which(overlaps2==max(overlaps2))][1] ) #choose the parent with the highest overlap value. Still, this could leave several parents, which is why we just pick the first one
return(parent)
}
})
parent <- ifelse(is.na(parent), gsea$condenseID, parent) #if there is no parent, the child becomes its own parent
gsea$condenseParentID <- unlist(parent)
gsea$condenseSurvive <- ifelse(gsea$condenseID %in% eaten, FALSE, TRUE)
return(gsea)
}
gsea <- condenseGsea(gsea, finalParents=c("GO:0006508", "GO:0002576"), namecol = "pathway")
colname="genes"
sep=","
similarity=0.9
similarity=0.9
finalParents=c("GO:0006508", "GO:0002576")
namecol = "pathway"
if(!is.null(n_finalParents) | !is.null(finalParents)){
message("Similarity cutoff will be ignored, because n_finalParents was defined!!!")
similarity <- -1
}
gsea$condenseID <- seq(nrow(gsea))
genes <- strsplit(gsea[,colname], split=sep)
n_finalParents=NULL
if(!is.null(n_finalParents) | !is.null(finalParents)){
message("Similarity cutoff will be ignored, because n_finalParents was defined!!!")
similarity <- -1
}
gsea$condenseID <- seq(nrow(gsea))
genes <- strsplit(gsea[,colname], split=sep)
#ratiomat will become matrix where each row is a set and each column is a set. The cells will contain the percentage of overlap between the sets.
ratiomat <- sapply(genes, function(x) sapply(genes, function(y) length(intersect(x,y)) )) #first, the cells contain absolute numbers
ratiomat <- as.data.frame(ratiomat)
rownames(ratiomat) <- NULL
colnames(ratiomat) <- seq(nrow(gsea))
ratiomat <- apply(ratiomat, 2, function(x) x/max(x)) #ratio is intersect of the sets vs. set size (of the column set)
ratiomat <- as.data.frame(ratiomat)
# define possible parents (only needed in case n_finalParents is defined)
possibleParents <- seq(nrow(gsea))
if(!is.null(finalParents)){
if(is.null(idcol)) stop("please provide a column name for the column containing the pathway names")
possibleParents <- which(gsea[,idcol] %in% finalParents)
}
if(!is.null(n_finalParents)){
cumsim <- apply(ratiomat, 1, var)
names(cumsim) <- seq_along(cumsim)
possibleParents <- as.numeric(head(names(cumsim[order(cumsim)]), n_finalParents)) #take those that have the least(!) variance in correlations
}
#each time a similarity value reaches the threshold, the smaller set's ID is added to "eaten" and to the "condenseChildren" column of the bigger set
eaten <- NA
gsea$condenseChildren <- ""
gsea$condenseParents <- ""
for(i in seq(nrow(ratiomat))) { #the ratio is intersect/n (number of genes of the column set), So j
for(j in seq(ncol(ratiomat))){
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & #the similarity threshold has to be passed
i %in% possibleParents & # i has to be a listed
(
ratiomat[i,j] > ratiomat[j,i] | #the parent has to be bigger than the child (and not the two cannot be the same)
!j %in% possibleParents | #if j is not listed, than i can be a parent even if it is smaller than j
(i=j | !is.null(finalParents)) #inormally a term does not become its own parent, but if it is one of the listed finalParents, it will be
)
){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
}
}
warnings()
i=1
j=2
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & #the similarity threshold has to be passed
i %in% possibleParents & # i has to be a listed
(
ratiomat[i,j] > ratiomat[j,i] | #the parent has to be bigger than the child (and not the two cannot be the same)
!j %in% possibleParents | #if j is not listed, than i can be a parent even if it is smaller than j
(i=j | !is.null(finalParents)) #inormally a term does not become its own parent, but if it is one of the listed finalParents, it will be
)
){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
for(i in seq(nrow(ratiomat))) { #the ratio is intersect/n (number of genes of the column set), So j
for(j in seq(ncol(ratiomat))){
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & #the similarity threshold has to be passed
i %in% possibleParents & # i has to be a listed
(
ratiomat[i,j] > ratiomat[j,i] | #the parent has to be bigger than the child (and not the two cannot be the same)
!j %in% possibleParents | #if j is not listed, than i can be a parent even if it is smaller than j
(i=j | !is.null(finalParents)) #inormally a term does not become its own parent, but if it is one of the listed finalParents, it will be
)
){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
}
}
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & #the similarity threshold has to be passed
i %in% possibleParents & # i has to be a listed
(
ratiomat[i,j] > ratiomat[j,i] | #the parent has to be bigger than the child (and not the two cannot be the same)
!j %in% possibleParents | #if j is not listed, than i can be a parent even if it is smaller than j
(i=j | !is.null(finalParents)) #inormally a term does not become its own parent, but if it is one of the listed finalParents, it will be
)
){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
ratiomat[i,j]>similarity
i
j
i
View(ratiomat)
#ratiomat will become matrix where each row is a set and each column is a set. The cells will contain the percentage of overlap between the sets.
ratiomat <- sapply(genes, function(x) sapply(genes, function(y) length(intersect(x,y)) )) #first, the cells contain absolute numbers
ratiomat <- as.data.frame(ratiomat)
rownames(ratiomat) <- NULL
colnames(ratiomat) <- seq(nrow(gsea))
ratiomat <- apply(ratiomat, 2, function(x) x/max(x)) #ratio is intersect of the sets vs. set size (of the column set)
ratiomat <- as.data.frame(ratiomat)
ratiomat[i,j]>similarity
ratiomat[1,5]
i
j
i=5
ratiomat[i,j]>similarity
for(i in seq(nrow(ratiomat))) { #the ratio is intersect/n (number of genes of the column set), So j
for(j in seq(ncol(ratiomat))){
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & #the similarity threshold has to be passed
i %in% possibleParents & # i has to be a listed
(
ratiomat[i,j] > ratiomat[j,i] | #the parent has to be bigger than the child (and not the two cannot be the same)
!j %in% possibleParents | #if j is not listed, than i can be a parent even if it is smaller than j
(i==j | !is.null(finalParents)) #inormally a term does not become its own parent, but if it is one of the listed finalParents, it will be
)
){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
}
}
gsea$condenseChildren <- gsub("^,","",gsea$condenseChildren)
gsea$condenseParents <- gsub("^,","",gsea$condenseParents)
parents <- strsplit(sapply(gsea$condenseParents, function(x) x), split=",")
parents <- lapply(parents, as.numeric)
parents
warnings()
if(!is.null(n_finalParents) | !is.null(finalParents)){
message("Similarity cutoff will be ignored, because n_finalParents was defined!!!")
similarity <- -1
}
gsea$condenseID <- seq(nrow(gsea))
genes <- strsplit(gsea[,colname], split=sep)
#ratiomat will become matrix where each row is a set and each column is a set. The cells will contain the percentage of overlap between the sets.
ratiomat <- sapply(genes, function(x) sapply(genes, function(y) length(intersect(x,y)) )) #first, the cells contain absolute numbers
ratiomat <- as.data.frame(ratiomat)
rownames(ratiomat) <- NULL
colnames(ratiomat) <- seq(nrow(gsea))
ratiomat <- apply(ratiomat, 2, function(x) x/max(x)) #ratio is intersect of the sets vs. set size (of the column set)
ratiomat <- as.data.frame(ratiomat)
# define possible parents (only needed in case n_finalParents is defined)
possibleParents <- seq(nrow(gsea))
if(!is.null(finalParents)){
if(is.null(idcol)) stop("please provide a column name for the column containing the pathway names")
possibleParents <- which(gsea[,idcol] %in% finalParents)
}
if(!is.null(n_finalParents)){
cumsim <- apply(ratiomat, 1, var)
names(cumsim) <- seq_along(cumsim)
possibleParents <- as.numeric(head(names(cumsim[order(cumsim)]), n_finalParents)) #take those that have the least(!) variance in correlations
}
idcol="pathway"
if(!is.null(n_finalParents) | !is.null(finalParents)){
message("Similarity cutoff will be ignored, because n_finalParents was defined!!!")
similarity <- -1
}
gsea$condenseID <- seq(nrow(gsea))
genes <- strsplit(gsea[,colname], split=sep)
#ratiomat will become matrix where each row is a set and each column is a set. The cells will contain the percentage of overlap between the sets.
ratiomat <- sapply(genes, function(x) sapply(genes, function(y) length(intersect(x,y)) )) #first, the cells contain absolute numbers
ratiomat <- as.data.frame(ratiomat)
rownames(ratiomat) <- NULL
colnames(ratiomat) <- seq(nrow(gsea))
ratiomat <- apply(ratiomat, 2, function(x) x/max(x)) #ratio is intersect of the sets vs. set size (of the column set)
ratiomat <- as.data.frame(ratiomat)
# define possible parents (only needed in case n_finalParents is defined)
possibleParents <- seq(nrow(gsea))
if(!is.null(finalParents)){
if(is.null(idcol)) stop("please provide a column name for the column containing the pathway names")
possibleParents <- which(gsea[,idcol] %in% finalParents)
}
if(!is.null(n_finalParents)){
cumsim <- apply(ratiomat, 1, var)
names(cumsim) <- seq_along(cumsim)
possibleParents <- as.numeric(head(names(cumsim[order(cumsim)]), n_finalParents)) #take those that have the least(!) variance in correlations
}
#each time a similarity value reaches the threshold, the smaller set's ID is added to "eaten" and to the "condenseChildren" column of the bigger set
eaten <- NA
gsea$condenseChildren <- ""
gsea$condenseParents <- ""
for(i in seq(nrow(ratiomat))) { #the ratio is intersect/n (number of genes of the column set), So j
for(j in seq(ncol(ratiomat))){
#if the ratio of intersect and set size (of set j) is bigger than the ratio of intersect and set size (of set i), it means that set j is smaller. Thus, it will get eaten
if(ratiomat[i,j]>similarity & #the similarity threshold has to be passed
i %in% possibleParents & # i has to be a listed
(
ratiomat[i,j] > ratiomat[j,i] | #the parent has to be bigger than the child (and not the two cannot be the same)
!j %in% possibleParents | #if j is not listed, than i can be a parent even if it is smaller than j
(i==j | !is.null(finalParents)) #inormally a term does not become its own parent, but if it is one of the listed finalParents, it will be
)
){ #by using >, sets do not eat themselves, and it is always the smaller set that gets eaten
gsea$condenseChildren[i] <- paste0(gsea$condenseChildren[i],",",j) #the set that does not get eaten gets the ID of j for its Children column
gsea$condenseParents[j] <- paste0(gsea$condenseParents[j],",",i) # the set that does get eaten gets the ID of i for its Parent column
eaten <- c(eaten,j) # just a vector, gathering all IDs from sets that were eaten
}
}
}
gsea$condenseChildren <- gsub("^,","",gsea$condenseChildren)
gsea$condenseParents <- gsub("^,","",gsea$condenseParents)
parents <- strsplit(sapply(gsea$condenseParents, function(x) x), split=",")
parents <- lapply(parents, as.numeric)
#the best parent will be determined by which parent shares the most genes with the child
parent <- lapply(seq_along(parents), function(j) {
curparents <- parents[[j]]
if(length(curparents)==0){NA}else{ #for each row in gsea, extract the parents (j is the child)
overlaps <- sapply(curparents, function(i) ratiomat[j,i]) #extract overlap values for all parents (normalized by the set size of the child)
parent <- curparents[which(overlaps==max(overlaps))] #choose the parent with the highest overlap value. This could lead to several parents
overlaps2 <- ratiomat[ rep(j,length(parent)) , parent ] #extract overlap values for all parents (normalized by the set size of the parent)
parent <- ifelse(length(parent)==1, parent, parent[which(overlaps2==max(overlaps2))][1] ) #choose the parent with the highest overlap value. Still, this could leave several parents, which is why we just pick the first one
return(parent)
}
})
parent <- ifelse(is.na(parent), gsea$condenseID, parent) #if there is no parent, the child becomes its own parent
gsea$condenseParentID <- unlist(parent)
gsea$condenseSurvive <- ifelse(gsea$condenseID %in% eaten, FALSE, TRUE)
parent
View(gsea)
library(gseaCondenser)
library(gseaCondenser)
#the best parent will be determined by which parent shares the most genes with the child
parentdata <- lapply(seq_along(parents), function(j) {
curparents <- parents[[j]]
if(length(curparents)==0){NA}else{ #for each row in gsea, extract the parents (j is the child)
overlaps <- sapply(curparents, function(i) ratiomat[j,i]) #extract overlap values for all parents (normalized by the set size of the child)
parent <- curparents[which(overlaps==max(overlaps))] #choose the parent with the highest overlap value. This could lead to several parents
overlaps2 <- ratiomat[ rep(j,length(parent)) , parent ] #extract overlap values for all parents (normalized by the set size of the parent)
parent <- ifelse(length(parent)==1, parent, parent[which(overlaps2==max(overlaps2))][1] ) #choose the parent with the highest overlap value. Still, this could leave several parents, which is why we just pick the first one
return(c(parent,max(overlaps)))
}
})
parent <- unlist(lapply(parentdata, function(x) x[1]))
parent
gsea$condenseOverlapratio <- unlist(lapply(parentdata, function(x) x[2]))
View(gsea)
library(gseaCondenser)
library(gseaCondenser)
devtools::document()
library(gseaCondenser)
gsea <- gseaCondenser::myGsea