//============================== // Please cite the following if you use MC-Sym: // 1) Major F et al. (1991) Science 253, 1255. // 2) Major F. (2003) Comp Sci Eng. 5, 44. //============================== // this MC-Sym script builds the H/ACA box small // nucleolar RNA pseudouridylation pocket from article: // Wu H, Feigon J. 2007 PNAS 104:6655-6660. // // Sequence numbering and chain IDs follow that of // PDB file 2P89. //========== Sequence ========== sequence( r A1 GGCCUUAGGAAACAGUUCGCUGUGCCGAAAGGUC ) sequence( r B35 UUCGGCUCUUCCUA ) //========== Cycles ========== ncm_05 = library( pdb( "MCSYM-DB/2_2/UAUA/*_s.pdb.gz" ) #1:#2, #3:#4 <- A6:A7, B47:B48 rmsd( 1.0 sidechain && !( pse || lp || hydrogen ) ) ) ncm_06 = library( pdb( "MCSYM-DB/2_2/AGCU/*_s.pdb.gz" ) #1:#2, #3:#4 <- A7:A8, B46:B47 rmsd( 1.0 sidechain && !( pse || lp || hydrogen ) ) ) ncm_07 = library( pdb( "MCSYM-DB/2_2/GGCC/*_s.pdb.gz" ) #1:#2, #3:#4 <- A8:A9, B45:B46 rmsd( 1.0 sidechain && !( pse || lp || hydrogen ) ) ) ncm_08 = library( pdb( "MCSYM-DB/2_2/GAUC/*_s.pdb.gz" ) #1:#2, #3:#4 <- A9:A10, B44:B45 rmsd( 1.0 sidechain && !( pse || lp || hydrogen ) ) ) ncm_09 = library( pdb( "MCSYM-DB/2_2/AAUU/*_s.pdb.gz" ) #1:#2, #3:#4 <- A10:A11, B43:B44 rmsd( 1.0 sidechain && !( pse || lp || hydrogen ) ) ) //=========== Backtrack =========== // assemble the whole structure: structure = backtrack( // start P2S stem ncm_05 // complete P2S stem merge( ncm_06 2.0 ) merge( ncm_07 2.0 ) merge( ncm_08 2.0 ) merge( ncm_09 2.0 ) ) // ========= Constraints / Restraints ========= clash ( structure 2.0 !( pse || lp || hydrogen ) ) ribose_rst ( structure method = estimate, threshold = 2.0, pucker = C3p_endo, glycosyl = anti ) backtrack_rst ( structure method = exhaustive, width_limit = 25%, height_limit = 100% ) implicit_phosphate_rst( structure sampling = 90% ) // ========= Exploration Initialization ========= explore( structure option( time_limit = 12h, seed = 3210 ) //reference( pdb("2P89_01.pdb") ) rmsd( 1.5 sidechain && !( pse || lp || hydrogen ) ) pdb( "HACA_P2S" zipped ) )