Thanks Spacebio, Where do I specify the databases to query (e.g. kegg, go, reactome)? Where do I specify the biological process I am looking for? regards,
Affymetrix Microarray data
I want to check if a certain biological process is enriched or signaled in a certain biological process (mitochondrial biogenesis) in Affymetrix Microarray data generated from an experiment subjecting mice to a certain treatment. How can I do that using Bioconductor? It was difficult to search for a specific term (e.g. mitochondrial biogenesis) using DAVID. Regards.
• 3,045 views
•
link
1 answer
It is easier if you use RStudio with this script:
library(mygene)
genes <- read.table("YOUR_TABLE_OF_GENES", header = T,)
y <- queryMany(genes, scopes = "symbol", fields = "name", species = "human", returnall = T)
x <- y$response
write.table(x, file = "your_results.txt", row.names = F)
The field "name" retrives the biological process of the symbol you're submiting. Here you can look for more info: http://mygene.info/doc/query_service.html#fields
• 0 views
•
link
• 0 views
•
link
If you have a list of "entrez" or "symbol", you can try this:
y <- queryMany(genes, scopes = "HERE_WRITE_ENTREZ_OR_SYMBOL_DEPENDING_YOUR_INPUT", fields = "go", species = "human", returnall = T)
• 0 views
•
link
Log in to answer this question.
P.S: You can/should change the title from
TutorialtoQuestion