Last chance! 50% off unlimited learning
Sale ends in
xGeneID2Symbol
is supposed to convert gene symbols to entrez
geneid.
xGeneID2Symbol(data, org = c("human", "mouse"), details = F,
verbose = T, RData.location = "http://galahad.well.ox.ac.uk/bigdata")
an input vector containing gene symbols
a character specifying an organism. Currently supported organisms are 'human' and 'mouse'. It can be an object 'EG'
logical to indicate whether to result in a data frame (in great details). By default, it sets to false
logical to indicate whether the messages will be displayed in the screen. By default, it sets to false for no display
the characters to tell the location of built-in
RData files. See xRDataLoader
for details
a vector containing symbol with 'NA' for the unmatched if (details set to false); otherwise, a data frame is returned
# NOT RUN {
# Load the library
library(XGR)
# a) provide the input Genes of interest (eg 100 randomly chosen human genes)
## load human genes
org.Hs.eg <- xRDataLoader(RData='org.Hs.eg')
GeneID <- sample(org.Hs.eg$gene_info$GeneID, 100)
GeneID
# b) convert into GeneID
Symbol <- xGeneID2Symbol(GeneID)
# c) convert into a data frame
df <- xGeneID2Symbol(GeneID, details=TRUE)
# advanced use
df <- xGeneID2Symbol(GeneID, org=org.Hs.eg, details=TRUE)
# }
Run the code above in your browser using DataLab