Hi there,
I downloaded some microarray data from GEO on Affymetrix Human Genome U133A Array and tried to map probes to genes using packages 'annotate' and 'hgu133a.db. But I found a lot of genes on my list don't have probes.
Try following codes:
library(annotate)
library(hgu133a.db)
x <- hgu133aENSEMBL
mapped_genes <- mappedkeys(x)
xx <- as.list(x[mapped_genes])
xx['AJUBA']
And it returns 'NA' for gene 'AJUBA' (the famous hippo pathway gene). Does that mean Affymetrix Human Genome U133A Array doesn't have any probes for 'AJUBA'?
Thank you!
I found another U133 plus 2 array dataset that satisfies my need. Your answer really help!