Entering edit mode
9.3 years ago
Shamim Sarhadi
▴
220
Hi
I have some probe ID and I want to convert that to gene name
I've run below script in R
library("annotate")
library("rat2302.db")
select(rat2302.db, c("1368587_at", "1385248_a_at",c("SYMBOL","ENTREZID","GENENAME"))
and then I gave an error
Error in select(rat2302.db, c("1368587_at", "1385248_a_at"), c("SYMBOL", :
unused argument (c("SYMBOL", "ENTREZID", "GENENAME"))
Please help me, what is the problem?
I appreciated you for your help
I run your command and also run my codes, but I gave the same error that written here
Thank you again
Running that code works fine for me. Run
sessionInfo()
and show the results.Maybe try appending your select command with the library you want the function to come from?
AnnotationDbi::
Note: Be careful copying code from here to your R session, sometimes line breaks are hidden and R can't interpret them.
Thank you again and again, it works fine for me too