GOALLENTREZID               package:GO               R Documentation

_A_n_n_o_t_a_t_i_o_n _o_f _G_O _i_d_e_n_t_i_f_i_e_r_s _b_y _a_l_l _t_h_e _c_o_r_r_e_s_p_o_n_d_i_n_g _E_n_t_r_e_z _G_e_n_e
_i_d_e_n_t_i_f_i_e_r_s

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

     This is an R environment (hash table) mapping GO identifiers to
     all the Entrez Gene identifiers corresponding to the GO
     identifiers and its direct or indirect offspring. The direct or
     indirect offspring of a given GO identifier are the nodes that are
     directly linked to the node for the GO identifier or indirectly
     linked to the GO identifier through nodes that are linked to the
     GO identifier based on the directed acyclic graph defined by Gene
     Ontology Consortium

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

     GO identifiers are Keys and the corresponding Entrez Gene
     identifiers are Values. Values are named vectors of length 1 or
     greater depending on whether a given GO identifier can be mapped
     to one or more Entrez Gene identifiers. Names for values are the
     evidence codes for the GO identifier (if an evidence code was
     provided by source data). The evidence codes that are 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:
     ftp://ftp.geneontology.org/pub/go/godatabase/archive/latest>.
     Built: Build Information not available

     Entrez Gene:\<URL: ftp://ftp.ncbi.nlm.nih.gov/gene/DATA>. Built:
     Source data downloaded from Entrez Gene on Mon Apr  7 09:09:28
     2008

     Package built: Mon Apr  7 09:09:39 2008

_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(GOALLENTREZID)
             # Remove GO identifiers that are not mapped to any Entrez Gene identifier
             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)
             }

