Difference between revisions of "Get Coordinates II"

From PyMOLWiki
Jump to navigation Jump to search
 
Line 16: Line 16:
 
</source>
 
</source>
  
[[Category:Scripting_Script_Library|Get Coordinates II]]
+
[[Category:Script_Library|Get Coordinates II]]

Revision as of 17:27, 6 May 2005

from pymol import cmd
from pymol import stored

stored.xyz = []
cmd.iterate_state(1,"pept","stored.xyz.append([x,y,z])")

# at this point, stored.xyz is a native Python array holding
# the coordinates, which you can modify as required

stored.xyz = map(lambda v:[-v[1],v[0],v[2]],stored.xyz)

# and now you can update the internal coordinate sets

cmd.alter_state(1,"pept","(x,y,z)=stored.xyz.pop(0)")