GOLOCUSID                 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 _t_h_e _c_o_r_r_e_s_p_o_n_d_i_n_g _L_o_c_u_s_L_i_n_k
_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 ids to the
     LocusLink ids corresponding to the GO id.

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

     GO ids are Keys and the corresponding LocusLink ids are values.
     Values are named vectors of length 1 or greater depending on
     whether a given GO id can be mapped to only one or more LocusLink
     ids. Names for values are the evidence codes for the GO id (if
     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 ids that can not be mapped to any LocusLink
     id at this time.  

     Only specific mappings (not derived from the directed acyclic
     graph of  Gene Ontology) between GO and LocusLink ids were
     included. Non-specific  mappings (derived from the directed
     acyclic graph of Gene Ontology.  e. g. GO ids are mapped to
     LocusLink ids that are mapped to their  children) are provided by
     a separate environment named GOALLLL. 

     Mappings were based on data provided by:

     Gene Ontology:<URL:
     http://www.godatabase.org/dev/database/archive/2004-09-01/go_20040
     9-termdb.xml.gz>. Built: 2004-09-01

     LocusLink:<URL:
     ftp://ftp.ncbi.nih.gov/refseq/LocusLink/LL_tmpl.gz>. Built:
     January 10, 2005

     Package built: Mon Jan 10 19:19:56 2005

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

     <URL: http://www.geneontology.org/> and <URL:
     http://www.ncbi.nlm.nih.gov/LocusLink>

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

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

