getNuIDMappingInfo           package:lumi           R Documentation

_g_e_t _t_h_e _m_a_p_p_i_n_g _i_n_f_o_r_m_a_t_i_o_n _f_r_o_m _n_u_I_D _t_o _R_e_f_S_e_q _I_D

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

     Get the mapping information (including mapping quality
     information) of nuIDs to the most recent RefSeq release. These
     information was kept in the IDMapping libraries.

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

     getNuIDMappingInfo(nuID = NULL, lib.mapping)

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

    nuID: a vector of nuIDs. If it is NULL, all mappings will be
          returned. 

lib.mapping: the ID mapping library 

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

     The function basically return the nuID mapping information kept in
     the "nuID_MappingInfo" table of IDMapping libraries
     (lumiHumanIDMapping, lumiMouseIDMapping, lumiRatIDMapping). For
     more details of nuID mapping, please refer to the help of
     corresponding IDMapping library.

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

     It returns a data.frame with each row corresponding to an input
     nuID.

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

     Warren Kibbe, Pan Du, Simon Lin

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

             ## load example data
             data(example.lumi)
             if (require(lumiHumanIDMapping)) {
                     nuIDs <- featureNames(example.lumi)
                     mappingInfo <- getNuIDMappingInfo(nuIDs, lib.mapping='lumiHumanIDMapping')
                     head(mappingInfo)
             }

