GOENTREZID                package:GO                R Documentation

_G_e_n_e _O_n_t_o_l_o_g_y (_G_O) _t_o _E_n_t_r_e_z _G_e_n_e _M_a_p_p_i_n_g

_D_e_s_c_r_i_p_t_i_o_n:

     This data set gives mappings between GO identifiers and Entrez
     Gene identifiers as reported by NCBI. The format is an R
     environment mapping GO identifiers to a vector of Entrez Gene
     identifiers that are associated with it. In addition to the Entrez
     Gene identifier. the evidence code (the reason for the
     association) is also given.

_D_e_t_a_i_l_s:

     Each GO identifier is mapped to a named vector of Entrez Gene
     identifiers. The name associated with each Entrez Gene identifier
     corresponds to the evidence code for that GO identifier. The
     evidence code indicates what kind of evidence supports the
     association between the GO and Entrez Gene identifiers. Evidence
     codes currently in use include:

     IMP - inferred from mutant phenotype  

     IGI - inferred from genetic interaction

     IPI - inferred from physical interaction  

     ISS - inferred from sequence similarity  

     IDA - inferred from direct assay  

     IEP - inferred from expression pattern  

     IEA - inferred from electronic annotation  

     TAS - traceable author statement  

     NAS - non-traceable author statement  

     ND - no biological data available  

     IC - inferred by curator

     NA is assigned to GO identifiers that can not be mapped to any
     Entrez Gene identifier at this time.  

     Mappings were based on data provided by:

     Gene Ontology:<URL:
     http://gopher5/compbio/annotationSourceData/archive.godatabase.org
     /latest/>. Built: 08-Aug-2006

     Entrez Gene:<URL:
     http://gopher5/compbio/annotationSourceData/ftp.ncbi.nlm.nih.gov/g
     ene/DATA/>. Built: Source data downloaded from Entrez Gene on Tue
     Sep  5 18:42:30 2006

     Package built: Tue Sep  5 18:42:30 2006

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://www.geneontology.org/> and <URL:
     http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene>

_E_x_a_m_p_l_e_s:

         require("GO") || stop("GO unavailable")
         # Convert the environment object to a list
         xx <- as.list(GOENTREZID)
         # Remove GO identifiers that are not mapped to any Entrez Gene id
         xx <- xx[!is.na(xx)]
         if(length(xx) > 0){
             # Get the Entrez Gene identifiers for the first two elents of xx
             llids  <- xx[1:2]
             # Get the evidence code llids
             evds <- sapply(llids, names)
         }

