Hello, I already managed to perform the analysis. Now the question I have is how to convert the KEGG terms to the description of the metabolic pathway:
Could you help me or give me suggestions?
# Select the needed columns
kegg_final <- kegg_unique[, c(2,1)]
head(kegg_final, 5)
KEGG.KO query
<char> <char>
1: K05359 Zm00001eb096110
2: K21596 Zm00001eb321680
3: K10406 Zm00001eb080260
4: K13946 Zm00001eb026490
5: K08286 Zm00001eb189060
# Differential
proteins <- read.table("proteinas.txt", sep = "\t")
head(proteins, 5)
# Define your list of gene/protein names of interest
protein_ids <- proteins$V1
# Enrichment analysis
enr_res <- enricher(protein_ids, TERM2GENE = kegg_final, pvalueCutoff = 0.05, pAdjustMethod = "BH", qvalueCutoff = 0.05, minGSSize = 10)
dotplot(enr_res, showCategory=15)
barplot(enr_res, showCategory=15)
Thanks so much.
Hello,
I have a problem to do the analysis in R. I want to kindly ask you: How did you perform KEGG pathway enrichment analysis in R for Zea mays? I have the same table output from DESeq2 Thank you in advance for your help