ath1121501ARACYCENZYME     package:ath1121501.db     R Documentation

_M_a_p _b_e_t_w_e_e_n _M_a_n_u_f_a_c_t_u_r_e_r _I_D_s _a_n_d _E_n_z_y_m_e _N_a_m_e_s _f_r_o_m _A_R_A_C_Y_C

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

     ath1121501ARACYCENZYME is an R object that provides mappings
     between manufacturer identifiers and Enzyme Names from ARACYC.

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

     Each manufacturer identifier maps to a named vector containing the
     Enzyme name for that gene according to the ARACYC database.  If
     this information is unknown, the vector will contain an 'NA'.

     Mappings between probe identifiers and enzyme identifiers were
     obtained using files provided by: Tair (
     ftp://ftp.arabidopsis.org/Pathways/aracyc_dump_20070703 ) on
     2007-Aug2

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

             x <- ath1121501ARACYCENZYME
             # Get the probe identifiers that are mapped to an Enzyme Name 
             mapped_probes <- mappedkeys(x)
             # Convert to a list
             xx <- as.list(x[mapped_probes])
             if(length(xx) > 0) {
               # Get the ENZYME name for the first five probes
               xx[1:5]
               # Get the first one
               xx[[1]]
             }

