usedChromGenes           package:annotate           R Documentation

_A _f_u_n_c_t_i_o_n _t_o _s_e_l_e_c_t _u_s_e_d _g_e_n_e_s _o_n _a _c_h_r_o_m_o_s_o_m_e _f_r_o_m _a_n _e_x_p_r_S_e_t.

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

     Given an instance of an 'exprSet', a 'chromLocation' object and
     the name of a chromosome this function returns all genes
     represented in the 'exprSet' on the specified chromosome.

_U_s_a_g_e:

     usedChromGenes(eSet, chrom, specChrom)

_A_r_g_u_m_e_n_t_s:

    eSet: An instance of an 'exprSet' object.

   chrom: The name of the chromosome of interest.

specChrom: An instance of a 'chromLocation' object.

_V_a_l_u_e:

     Returns a vector of gene names that represent the genes from the
     'exprSet' that are on the specified chromosome.

_A_u_t_h_o_r(_s):

     Jeff Gentry

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

         data(eset)
         data(hgu95AProbLocs)
         usedChromGenes(eset,"1",hgu95AProbLocs)

