hgubeta7GO             package:hgubeta7             R Documentation

_M_a_p _b_e_t_w_e_e_n _M_a_n_u_f_a_c_t_u_r_e_r _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:

     hgubeta7GO is an R environment that provides mappings between
     manufacturer ids and GO ids.

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

     Each manufacturer id is mapped to a named vector of GO ids. The
     name associated with each GO id corresponds to the evidence code
     for that GO id. 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

     Mappings between probe ids and GO information were obtained
     through their mappings to Entrez Gene ids. NAs are assigned to
     probe identifiers that can not be mapped to any Gene Ontology
     information. Mappings between Gene Ontology ids an Gene Ontology
     terms and other information are available in a separate data
     package named GO.

     Mappings were based on data provided by:

     Entrez Gene:<URL:
     http://gopher5/compbio/annotationSourceData/ftp.ncbi.nlm.nih.gov/g
     ene/DATA/>. Built: Source data downloaded from Entrez Gene on Tue
     Oct  4 19:36:12 2005

     Gene Ontology:<URL:
     http://gopher5/compbio/annotationSourceData/archive.godatabase.org
     /latest//go_200509-termdb.rdf-xml.gz>. Built: 200509

     Package built Tue Oct  4 19:53:48 2005

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

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

         }

