\name{org.Hs.refSYMBOL}
\alias{org.Hs.refSYMBOL}
\title{Map protein identifier to gene symbols} 
\description{
  org.Hs.refSYMBOL maps protein identifiers to gene symbols.
}
\details{
  Each protein identifier maps to an abbreviation for the
  corresponding gene. .

  Mappings were based on data provided by: NCBI (\url{ftp://ftp.ncbi.nih.gov/gene/DATA/gene2refseq.gz ; ftp://ftp.ncbi.nih.gov/gene/DATA/gene_info.gz}) on
    
}

\examples{
	x <- org.Hs.refSYMBOL
  # Get the protein identifiers that are mapped to gene symbols.
  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]]
	}
}