\name{org.Hs.refPATH} \alias{org.Hs.refPATH} \alias{org.Hs.refPATH2GI} \title{Map protein identifier to KEGG pathway} \description{ org.Hs.refPATH maps protein identifiers to KEGG pathway identifiers. } \details{ Each protein identifier maps to KEGG pathway identifiers. Mappings were based on data provided by: KEGG (\url{ftp://ftp.genome.jp/pub/kegg/hsa/hsa_pathway.list ; ftp://ftp.genome.jp/pub/kegg/hsa/hsa_ncbi-geneid.list}) on } \examples{ x <- org.Hs.refPATH # Get the protein identifiers that are mapped to KEGG pathways. 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.Hs.refPATH2GI xx <- as.list(org.Hs.refPATH2GI) if(length(xx) > 0){ ## Get the first one xx[[1]] } }