ygs98ALIAS               package:ygs98               R Documentation

_M_a_p _O_p_e_n _R_e_a_d_i_n_g _F_r_a_m_e (_O_R_F) _I_d_e_n_t_i_f_i_e_r_s _t_o _A_l_i_a_s _G_e_n_e _N_a_m_e_s

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

     A set of gene names may have been used to report yeast genes
     represented by ORF identifiers. One of these names is chosen to be
     the primary gene name, and the others are considered aliases. This
     R environment provides mappings between the primary name and
     aliases.

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

     Each primary name maps to a vector of alias names. If there are no
     aliases, the vector will contain 'NA'.

     Annotation based on data provided by:

     Yeast Genome: Not available

     Package built: Thu Mar 15 18:08:49 2007

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

     <URL: http://www.yeastgenome.org/DownloadContents.shtml>

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

             require("annotate") || stop("annotate unavailable")
             xx <- as.list(ygs98ALIAS)
             if(length(xx) > 0){
                     # Get the value of the first key
                     xx[[1]]
                     # Get the values for a few keys
                     if(length(xx) >= 3){
                             xx[1:3]
                     }
             }

