gahgu95av2GO           package:gahgu95av2           R Documentation

_M_a_p _b_e_t_w_e_e_n _c_u_s_t_o_m _p_r_o_b_e_s_e_t _I_D_s _a_n_d _G_e_n_e _O_n_t_o_l_o_g_y (_G_O)

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

     gahgu95av2GO is an R environment that provides mappings between
     custom probeset identifiers and the GO identifiers that they are
     directly associated with.

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

     Each custom probeset identifier is mapped to a list of lists.  The
     names on the outer list are GO identifiers.  Each inner list
     contains of five named elements: GOID, Ontology, Term, Evidence
     and PMIDS.

     The GOID element matches the GO identifier named in the outer
     list.

     The Ontology element indicates which of the three Gene Ontology
     categories this identifier belongs to.  The categories are
     biological process (BP), cellular component (CC), and molecular
     function (MF).

     The Term element indicates the name of GO cathegory correspoding
     to the GO identifier named in the outer list.

     The Evidence element contains a code indicating what kind of
     evidence supports the association of the GO identifier to the
     Entrez Gene id. The evidence codes 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

     The PMIDS element indicates the Pubmed IDs of references in the
     literature, if relevant, obtained from EntrezGene.

     NAs are assigned to probe identifiers that can not be mapped to
     any Gene Ontology information. Other information concerning Gene
     Ontology classification are available in a separate data package
     named GO.

     Mappings were based on data provided by:

     GeneCards database - www.genecards.org

     Package built Tue Feb 26 00:03:27 2008

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

     <URL: www.genecards.org>

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

         # Convert to a list
         xx <- as.list(gahgu95av2GO)
         # Remove all the NAs
         xx <- xx[!is.na(xx)]
         if(length(xx) > 0){
                 # Try the first one
                 got <- xx[[1]]           
                 got[[1]][["GOID"]]
                 got[[1]][["Ontology"]]
                 got[[1]][["Evidence"]]

         }

