probesByLL             package:annotate             R Documentation

_A _f_u_n_c_t_i_o_n _t_h_a_t _g_r_o_u_p_s _p_r_o_b_e _i_d_s _b_y _L_o_c_u_s_L_i_n_k _i_d_s

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

     This  function takes the name of a platform specific annotation
     data package (e. g. an Affymetrix chip) and returns a list of
     vectors of character string with LocusLink ids as the names of the
     lists of vectors and probe ids corresponding to the LocusLink ids
     as values.

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

     probesByLL(baseName)

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

baseName: 'baseName' a character string for the name of platform
          specific annotation data package

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

     Each platform specific annotation data package has a LOCUSID
     environment that maps probe ids to LocusLink ids. This function
     does reverse mappings by grouping probe ids under unique LocusLink
     ids and returns the mappings as a list.

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

     This function returns a list of vectors of character strings with
     unique LocusLink ids as the names and probe ids corresponding to
     the LocsuLink ids as values.

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

     Jianhua Zhang

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

         if(require("hgu95av2")){
             tt <- probesByLL("hgu95av2")
             tt[1:4]
         }

