Entering edit mode
8 weeks ago
Ana
▴
10
Hi,
I am trying to run rrvgo's function getGoSize to find the size of a GO term.
This is my code:
#BiocManager::install("rrvgo")
library(rrvgo)
t <- read_xlsx("Outputs/RandomPairs_PathwayFreqs_for_permutations.xlsx", sheet =4)
t <- t %>% filter(Coverage == 1)
terms <- t$GO
size <- getGoSize(terms, "org.Hs.eg.db")
Error in getGoSize(terms, "org.Hs.eg.db") : could not find function "getGoSize"
Any idea of why this could be happening?
Thanks in advance.