How to define a center of rotation when applying a symmetry

Hi, I would like to apply a rotation to a pdb model, in order to place copies of it in equivalent symmetry points (icosahedral symmetry). I am not sure I understand all the different coordinate systems in chimera, but digging into the program code, I was able to write the following script. I am not sure it is the best way to do it, and obviously at the moment it does not work properly, because I am not specifying the center of rotation. With respect to the coordinates of the pdb model, I know the center of symmetry, let's say (161,161,161), but I don't know how to impose it. I tried to assign these coordinates to the parameter 'cofr', but the result does not change. Does anyone know how to apply, inside a script, a rotation matrix around a given point? Any other feedback on the correctness of the script is very welcome. Thank you. Giovanni ############################################### from chimera import openModels, Point from PDBmatrices import chimera_xform from Icosahedron import icosahedral_symmetry_matrices icomats = icosahedral_symmetry_matrices(orientation = '222r') for rmat in icomats: xf = chimera_xform(rmat) m, = openModels.open('/dummy/dummy.pdb') # open a copy of the model m.openState.xform = xf # set rotation ############################################### ============================================= Giovanni Cardone Laboratory of Structural Biology Research National Institutes of Health 50 South Drive (Building 50), Room 1511 Bethesda, MD 20892-8025 USA Tel: (301) 451-8247 FAX: (301) 480-7629 Giovanni_Cardone@nih.gov =============================================

Hi Giovanni, To convert icosahedron rotation matrices that act about origin 0,0,0 to instead use a different center of rotation (cx,cy,cz) you would first shift by -cx,-cy,-cz then apply the rotation then shift by cx,cy,cz. I've attached an example script. Note that "a.premultiply(b)" means to multiply b to the left of "a" which means that b acts after a. Note that the Chimera Multiscale dialog (Tools / Higher-Order Structure / Multiscale) will apply icosahedral symmetry and load the coordinates (use select all, then style show wire). It doesn't allow you to change the icosahedron origin to something different from 0,0,0 but you could modify your PDB coordinates to make that the origin. Tom from chimera import openModels, Xform from PDBmatrices import chimera_xform from Icosahedron import icosahedral_symmetry_matrices pdb_path = '/dummy/dummy.pdb' cx = cy = cz = 161 # Center of icosahedron icomats = icosahedral_symmetry_matrices(orientation = '222r') for rmat in icomats: xf = Xform.translation(-cx, -cy, -cz) xf.premultiply(chimera_xform(rmat)) xf.premultiply(Xform.translation(cx, cy, cz)) for m in openModels.open(pdb_path): # open a copy of the model m.openState.xform = xf # set rotation
participants (2)
-
Giovanni Cardone
-
Thomas Goddard