Too many fails converting gene SYMBOL to ENTREZID
0
0
Entering edit mode
4.8 years ago
MatthewP ★ 1.4k

Hello, my dataset is GSE37133. I use GPL information to annotate gene SYMBOL(No bioconductor package for this chip). Main code:

gpl <- getGEO("GPL2996", destdir=".")
# dataframe that can map probes id and gene SYMBOL
annot <- Table(gpl)[,c(1, 2, 5, 10)]
# expression data annotation
expr_2 <- merge(x = annot, y = diff_expr_tenmg, by = "ID")

I want to call enrichKEGG function in clusterProfiler which do not support gene SYMBOL. So I need to run bitr to convert gene SYMBOL to ENTREZID. Main code

# load genowide annotation database
library(org.Rn.eg.db)
library(clusterProfiler)

# convertion
gene_list <- bitr(expr_2$Gene_Symbol, fromType="SYMBOL", toType="ENTREZID", OrgDb=org.Rn.eg.db, drop=TRUE)

Here, about 30% gene SYMBOL fails at converting. Where am I wrong? Thanks.

microarray clusterProfiler GEO • 2.0k views
ADD COMMENT
0
Entering edit mode

Your code is not reproducible because diff_expr_tenmg was never instantiated (?). Have you triied biomaRt to convert the gene symbols?

ADD REPLY
1
Entering edit mode

Sorry I didn't paste all my code here. I will try biomaRt later. Thanks Kevin.

ADD REPLY

Login before adding your answer.

Traffic: 3111 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