Difference between revisions of "Alter State"

From PyMOLWiki
Jump to navigation Jump to search
Line 11: Line 11:
  
 
===EXAMPLES===
 
===EXAMPLES===
Alter the X coordinate for all
+
<source lang="python">
* alter_state 1,(all),x=x+5
+
# Alter the X coordinate for all
Shift the coordinates of the entire PDB file
+
alter_state 1,(all),x=x+5
* alter_state 1,selection,(x,y,z)=(newx,newy,newz)
 
  
 +
#Shift the coordinates of the entire PDB file
 +
alter_state 1,selection,(x,y,z)=(newx,newy,newz)
 +
</source>
  
 
===SEE ALSO===
 
===SEE ALSO===

Revision as of 15:49, 24 February 2007

DESCRIPTION

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)

SEE ALSO

Cmd iterate_state, Cmd alter, Cmd iterate