Entering edit mode
I've got a lncRNA NEAT1, and I want to see its expression in one dataset from hgu133a2 platform. I found the affymetrix id '214657_s_at' was mapped to NEAT1 in affymetrix annotation release 'HG-U133A_2 Annotations, CSV format, Release 36 (19 MB, 4/13/16)'. But when I query the probeset using the following code
getEG('214657_s_at', 'hgu133a2.db')
I got an NA return. I'm wondering the difference between hgu133a2.db and the annotation release from affymetrix. Should I continue to use affymetrix annotation instead of hgu133a2.db?
Thanks, but I'm wondering why getEG doesn't work any more.
Some functions just get outdated and replaced by better and more "universal" ones. Its really tough sometimes to keep up with all the changes happening, especially towards the end of the year! Select is awesome though
getEG
does work. It gave you an answer without an error, no? It just gives you a different answer than what you get usingselect
, because in the intervening period (getEG
is a function that was from circa 2004 or so) we changed our mind about what you should get when a given probe measures more than one thing. In the past we returned NA because it wasn't clear what was being measured. In recent times we have decided to return all available mappings and let the end user sort it out.You can't get multi-mapping probes using
getEG
, because it's a convenience function. You can useget
however.