Hello,
I am trying to do a geneset enrichment analysis using gseGO in Clusterprofiler. However, I only have the entrez gene ID and gene name.
Is it possible to run a gene set enrichment analysis with just the gene ID information without having a log2FC for my geneList?
# what the code is supposed to look like for the enrichment
#However I only have the geneID information, for the geneList and this wouldn't run.
ego3 <- gseGO(geneList = geneList, OrgDb = org.Hs.eg.db, ont = "CC", minGSSize = 100, maxGSSize = 500, pvalueCutoff = 0.05, verbose = FALSE) ```