mwgcodACCNUM            package:mwgcod.db            R Documentation

_M_a_p _M_a_n_u_f_a_c_t_u_r_e_r _i_d_e_n_t_i_f_i_e_r_s _t_o _G_e_n_B_a_n_k _A_c_c_e_s_s_i_o_n _N_u_m_b_e_r_s

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

     mwgcodACCNUM is an R object that contains mappings between a
     manufacturer's identifiers and GenBank accession numbers.

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

     This object was produced by first mapping the manufacturer's
     identifiers to Entrez Gene identifiers <URL:
     http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene>. The mapped
     Entrez Gene identifiers then serve as the point of linkage to the
     GenBank accession numbers.

     Each manufacturer identifier maps to a vector containing a GenBank
     accession number.

     Mappings were based on data provided by: Entrez Gene (
     ftp://ftp.ncbi.nlm.nih.gov/gene/DATA ) on 2008-Apr2

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

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

