PFAMPDB               package:PFAM.db               R Documentation

_M_a_p_p_i_n_g_s _f_r_o_m _a _P_F_A_M _A_c_c_e_s_s_i_o_n _n_u_m_b_e_r _t_o _a _P_D_B _I_D

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

     This is an R object that always contains mappings from a PFAM
     accession (AC) to a PDB ID

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

     The PDB ID along with the start point and end point have been
     attached to the PFAM accessions in this object.

     More Details: PDB (<URL: http://www.rcsb.org/pdb/index.html>), the
     single worldwide repository for the processing and distribution of
     3-D biological macromolecular structure data.  Reference: H.M.
     Berman, J. Westbrook, Z. Feng, G. Gilliland, T.N. Bhat, H.
     Weissig, I.N. Shindyalov, P.E. Bourne:  The Protein Data Bank.  
     Nucleic Acids Research  ,  28  pp. 235-242 (2000)

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://www.sanger.ac.uk/Software/Pfam/> and <URL:
     ftp://ftp.sanger.ac.uk/pub/databases/Pfam/current_release/userman.txt>

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

             #To map from PFAM to PDB:
             x <- PFAMPDB
             # Get the PFAM identifiers that are mapped to a PDB
             mapped_keys <- mappedkeys(x)
             # Convert to a list
             xx <- as.list(x[mapped_keys])
             if(length(xx) > 0) {
               # Get the PDB info for the first five PFAM IDs
               xx[1:5]
               # Get the first one
               xx[[1]]
             }

