Problem in reading the NCBI's GEO microarray SOFT files in R/BioConductor
I was working in R reading the GEO dataset. I don't know why I can't execute this command. I don't know whether it is any installation problem or any library missing .I am using dataset from GEO database. This is the first time I am trying in R
looking forward for the answers..
geneNames(eset)[1:10]
Error: could not find function "geneNames"
• 4,302 views
•
link
1 answer
The method is featureNames(), not geneNames(). Try that instead.
If you are looking for actual gene symbols, you'll need to use fData(eset)[1:10,] and determine which column you would like to use for "gene name".
• 0 views
•
link
Log in to answer this question.
Are you following any tutorial? Where did you get those lines?
Yeah I was following one tutorial. i loaded GEO file and checked the metadata everything was fine.
This is what I did before running
geneNames()functionDo you think its bcoz of library intsllation problem in R
When I tried to upgrade. I got this.
No, it's not library installation problem. This function was "Biobase Deprecated and Defunct".
So what do you think - how should I proceed?