PFAMSCOP2AC             package:PFAM.db             R Documentation

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

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

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

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

     The PFAM accession number has been attached to the SCOP IDs in
     this object.

     More Details: Structural Classification of Proteins (<URL:
     http://scop.mrc-lmb.cam.ac.uk/scop/index.html>).  Reference:
     Murzin A. G., Brenner S. E., Hubbard T., Chothia C. (1995). SCOP:
     a structural classification of proteins database for the
     investigation of sequences and structures. J. Mol. Biol. 247,
     536-540

_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 SCOP to PFAM IDs:
             x <- PFAMSCOP2AC
             # Get the SCOP identifiers that are mapped to a PFAM ID
             mapped_keys <- mappedkeys(x)
             # Convert to a list
             xx <- as.list(x[mapped_keys])
             if(length(xx) > 0) {
               # Get the SCOP ID for the first five CAZYs
               xx[1:5]
               # Get the first one
               xx[[1]]
             }

