YEASTCOMMON2SYSTEMATIC         package:YEAST         R Documentation

_M_a_p _B_e_t_w_e_e_n _Y_e_a_s_t _C_o_m_m_o_n _N_a_m_e_s _a_n_d _S_y_s_t_e_m_a_t_i_c _N_a_m_e_s

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

     YEASTCOMMON2SYSTEMATIC is an R environment that maps the yeast
     common names (gene names and aliases) to the corresponding yeast
     systematic names.

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

     Each yeast common name, either gene name or alias, maps to a
     vector of systematic names.  This mapping is the reverse mappings
     of YEASTGENENAME and YEASTALIAS.  

     Mappings were based on data provided by:

     Yeast Genome: Not available

     Package built Thu Mar 15 18:04:05 2007

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

          # Convert to a list
          xx <- as.list(YEASTCOMMON2SYSTEMATIC)
          # Remove probes that do not map to any COMMON2SYSTEMATIC
          xx <- xx[!is.na(xx)]
          if(length(xx) > 0){
              # Gets the systematic gene names for the first five gene names/alias
              xx[1:5]
              # Get the first one
              xx[[1]]
          }

