| rn230rnentrezgGENENAME {rn230rnentrezg} | R Documentation |
rn230rnentrezgGENENAME is an R environment that maps manufacturer identifiers to the corresponding gene name.
Each probeset mapsed to a description that comes with the original data source. It could be empty if the data souce didn't provide any description
# Convert to a list
data(rn230rnentrezgGENENAME)
xx <- as.list(rn230rnentrezgGENENAME)
# Remove probes that do not map to any GENENAME
xx <- xx[!is.na(xx)]
if(length(xx) > 0){
# Gets the gene names for the first five probe ids
xx[1:5]
# Get the first one
xx[[1]]
}