### Name: hgu95av2ENSEMBL ### Title: Map Ensembl gene accession numbers with manufacturer identifiers ### Aliases: hgu95av2ENSEMBL hgu95av2ENSEMBL2PROBE ### Keywords: datasets ### ** Examples x <- hgu95av2ENSEMBL # Get the manufacturer IDs that are mapped to an Ensembl ID mapped_genes <- mappedkeys(x) # Convert to a list xx <- as.list(x[mapped_genes]) if(length(xx) > 0) { # Get the Ensembl IDs for the first five genes xx[1:5] # Get the first one xx[[1]] } #For the reverse map ENSEMBL2EG: # Convert to a list xx <- as.list(hgu95av2ENSEMBL2PROBE) if(length(xx) > 0){ # Gets the manufacturer IDs for the first five Ensembl IDs xx[1:5] # Get the first one xx[[1]] }