This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Convert ID for Human Gene 1.0 ST Array

Hi, I am looking for a R package to convert IDs for the 1.0 ST array from affymetrix. The IDs have the format below:

7892501

7892501

...

r microarray affymetrix

2 answers

Some more automated ways I just posted here: C: Why bioMart query results in a low coverage of annotations

probeIDs

require(hugene10sttranscriptcluster.db)
annotLookup <- select(hugene10sttranscriptcluster.db, keys =probeIDs,
  columns = c('PROBEID', 'ENSEMBL', 'SYMBOL'))

require(hugene10stprobeset.db)
annotLookup <- select(hugene10stprobeset.db, keys = probeIDs,
  columns = c('PROBEID', 'ENSEMBL', 'SYMBOL'))

See: A: Mapping Between Affymetrix Features To Genes

Log in to answer this question.