This is a read-only mirror of pymolwiki.org
Difference between revisions of "Alter State"
Jump to navigation
Jump to search
m (1 revision) |
|||
| (9 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | #REDIRECT [[iterate]] | |
| − | + | ||
| − | + | '''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=== | ===USAGE=== | ||
| − | + | <source lang="python"> | |
| − | + | alter_state state,(selection),expression | |
| − | + | </source> | |
| + | |||
===EXAMPLES=== | ===EXAMPLES=== | ||
| − | + | <source lang="python"> | |
| − | + | # 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) | ||
| + | </source> | ||
| + | |||
===SEE ALSO=== | ===SEE ALSO=== | ||
| − | + | [[Iterate_State]], [[alter]], [[iterate]] | |
| − | |||
| − | [[Category:Commands| | + | [[Category:Commands|Alter State]] |
| + | [[Category:States|Alter State]] | ||
Latest revision as of 07:02, 3 January 2016
Redirect to:
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)