Yeah Thanks a lot :) but it doesn't work more than some 100 gene IDs... so all i have to do now is to
a <- read.csv("entrez ids.csv", header = TRUE)
library(org.Hs.eg.db)
library(annotate)
d= getSYMBOL(a, data='org.Hs.eg') Error in .checkKeysAreWellFormed(keys) : keys must be supplied in a character vector with no NAs
This is the error i get....
I think this may be one of the easiest way to do this task. You can convert Entrez ID into gene name by using website called "MatchMiner" (http://discover.nci.nih.gov/matchminer/MatchMinerLookup.jsp). All you need to do is to upload a file that contains all your Entrez IDs. This website will convert them into HUGO gene names.
Thanks @hojoon.compbio it worked... :o)
What is the library "annotate" and how can I install it, please?
Thanks.
It's a Bioconductor package; details and installation instructions are here:
http://bioconductor.org/packages/release/bioc/html/annotate.html
Great! Which function converts gene symbols to entrez gene ids, please?
Thanks.
Time for you to read some documentation I think :)
Thanks for your question, this what I need