GO analysis
1
0
Entering edit mode
5 days ago
Saeed ▴ 10

Hello I have lists of pathways , number of genes and adj value as in bellow, How can I put all results of GO analysis (MF, BP, CC AND KEGG) pathways in a graph using ggplot2 or any package?

number of pathways are 32.

adj.Pval,          Genes ,       Pathways 


8.2e-  10  13       - Endopeptidase inhibitor activity 


8.2e-10 -  13        -Peptidase inhibitor activity 
ggplot2 enrichment Go analysis • 416 views
ADD COMMENT
1
Entering edit mode

Please provide more information. What result are you trying to highlight with this data? Is there something in the literature that you've seen that you want to replicate?

ADD REPLY
0
Entering edit mode

Post the data Saeed. Either attach a csv, upload to github, or include an example of the data.

ADD REPLY
2
Entering edit mode
2 days ago
Saeed ▴ 10

I manged to generate the the graph but still no pretty, I would like to make GT to each CC, MF, BP and KEGG in single.

Here is a code and data and graph are attached

ggplot(input_mat) + geom_point(aes(x = input_mat$Genes, y = input_mat$Pathways, color = input_mat$Type), size = 2) + theme_bw() + theme(axis.text.x = element_text(size=rel(1.15)), axis.title = element_text(size=rel(1.15))) + xlab("Gene number") + ylab(" GO terms") + ggtitle("Dotplot of top 30 significant GO terms") + theme(plot.title = element_text(hjust=0.5, face = "bold"))

enter image description here

ADD COMMENT
0
Entering edit mode

Have you tried faceting it? Something like facet_wrap(.~Type). As an aside, you don't need to call the dataframe when you're assigning aesthetics, and for most use cases it's best practise to assign them in the main ggplot command:

ggplot(data = input_data, aes(colour = Type, x = Genes, y =  Pathways) + 
  geom_point(size = 2) +
  ...

EDIT: Just reread the post and you want them in a single plot. But the other comment remains valid, so I'll just leave it.

ADD REPLY

Login before adding your answer.

Traffic: 2080 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6