\name{org.Rn.refREFSEQ} \alias{org.Rn.refREFSEQ} \alias{org.Rn.refREFSEQ2GI} \title{Map protein identifier to RefSeq identifiers} \description{ org.Rn.refREFSEQ maps protein identifiers to RefSeq identifiers. } \details{ Each protein identifier maps to RefSeq identifiers. Mappings were based on data provided by: NCBI (\url{ftp://ftp.ncbi.nih.gov/refseq/R_norvegicus/mRNA_Prot/rat.protein.faa.gz}) on March 10, 2008 } \examples{ x <- org.Rn.refREFSEQ # Get the protein identifiers that are mapped to RefSeq identifiers. mapped_proteins <- mappedkeys(x) # Convert to a list xx <- as.list(x[mapped_proteins]) if(length(xx) > 0){ # Get the value of the first key xx[[1]] } ## For the reverse map org.Rn.refREFSEQ2GI xx <- as.list(org.Rn.refREFSEQ2GI) if(length(xx) > 0){ ## Get the first one xx[[1]] } }