gahgu95eGENESTART          package:gahgu95e          R Documentation

_M_a_p _c_u_s_t_o_m _p_r_o_b_e_s_e_t _I_D_s _t_o _g_e_n_e _s_t_a_r_t _p_o_s_i_t_i_o_n

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

     gahgu95eGENESTART is an R environment that provides mappings
     between a custom probeset identifier and the base pair starting
     position of gene onto corresponding chromosome.

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

     Each identifier maps to a gene start position. If the gene start
     position is unknown, the vector will contain an 'NA'.

     Mappings were based on data provided by:

     GeneCards database - www.genecards.org

     Package built: Mon Feb 25 23:21:39 2008

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

     <URL: www.genecards.org>

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

             # Convert to a list
             xx <- as.list(gahgu95eGENESTART)
             # Remove probe identifiers that do not map to any gene start position
             xx <- xx[!is.na(xx)]
             if(length(xx) > 0){
                 # Get the base pair number for gene start position for the first five probes
                 xx[1:5]
                 # Get the first one
                 xx[[1]]
             }

