Alter State: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
'''alter_state''' changes the atomic coordinates of a particular state using the python evaluator with a separate name space for each atom. The symbols defined in the name space are: | '''alter_state''' changes the atomic coordinates of a particular state using the python evaluator with a separate name space for each atom. The symbols defined in the name space are: | ||
* x | * x |
Revision as of 13:26, 17 November 2009
alter_state changes the atomic coordinates of a particular state using the python evaluator with a separate name space for each atom. The symbols defined in the name space are:
- x
- y
- z
USAGE
alter_state state,(selection),expression
EXAMPLES
# Alter the X coordinate for all
alter_state 1,(all),x=x+5
#Shift the coordinates of the entire PDB file
alter_state 1,selection,(x,y,z)=(newx,newy,newz)