YEASTCHR                package:YEAST                R Documentation

_M_a_p_p_i_n_g_s _b_e_t_w_e_e_n _p_r_o_b_e _i_d_e_n_t_i_f_i_e_r_s _a_n_d _t_h_e _c_h_r_o_m_o_s_o_m_e _n_u_m_b_e_r_s _t_h_e
_g_e_n_e_s _r_e_p_r_e_s_e_n_t_e_d _b_y _t_h_e _p_r_o_b_e _i_d_s _r_e_s_i_d_e

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

     Each chromosome of a given organism is assigned a number or letter
     for labeling purpose. YEASTCHR maps probe ids to the numbers or
     letters labeling chromosomes where the genes corresponding to the
     probe ids reside

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

     Since a given gene may be found in more than one chromosomes, each
     probe id is mapped to a character vector of length 1 or greater.
     Probe ids that can not be mapped to any chromosome at the time
     when the package was built are assinged NAs. 

     Mappings were based on data provided by:

     Yeast Genome:<URL:
     http://www.yeastgenome.org/DownloadContents.shtml>. Built: Yeast
     Genome data are built at various time  intervals. Sources used
     were downloaded  Fri Jan  7 14:56:40 2005 

     Package built: Fri Jan  7 16:12:38 2005

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

             # Convert to a list
             xx <- as.list(YEASTCHR)
             # Remove probe ids that do not map to any CHRLOC
             xx <- xx[!is.na(xx)]
             if(length(xx) > 0){
                 # Get the chromosome number for the first five probes
                 xx[1:5]
                 # Get the first one
                 xx[[1]]
             }

