This is a read-only mirror of pymolwiki.org
Difference between revisions of "Intra rms"
Jump to navigation
Jump to search
m (17 revisions) |
|||
(16 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
− | + | '''intra_rms''' calculates rms fit values for all states of an object over an atom selection relative to the indicated state. Coordinates are left unchanged. The rms values are returned as a python array. | |
− | + | ||
− | |||
− | |||
− | |||
− | |||
===PYMOL API=== | ===PYMOL API=== | ||
<source lang="python"> | <source lang="python"> | ||
cmd.intra_rms( string selection, int state) | cmd.intra_rms( string selection, int state) | ||
− | </ | + | </source> |
+ | |||
===PYTHON EXAMPLE=== | ===PYTHON EXAMPLE=== | ||
− | + | <source lang="python"> | |
− | + | from pymol import cmd | |
− | + | rms = cmd.intra_rms("(name ca)",1) | |
− | + | </source> | |
+ | ===USER COMMENTS=== | ||
+ | See [[Rms]] for selection caveats for this group of commands. | ||
===SEE ALSO=== | ===SEE ALSO=== | ||
− | + | [[Fit]], [[Rms]], [[Rms_Cur]], [[Intra_Fit]], [[Intra_Rms_Cur]], [[Pair_Fit]] | |
− | [[:Category: | + | [[Category:Commands|Intra Rms]] |
+ | [[Category:States|Intra Rms]] | ||
+ | [[Category:Structure_Alignment|Intra Rms]] |
Latest revision as of 01:47, 28 March 2014
intra_rms calculates rms fit values for all states of an object over an atom selection relative to the indicated state. Coordinates are left unchanged. The rms values are returned as a python array.
PYMOL API
cmd.intra_rms( string selection, int state)
PYTHON EXAMPLE
from pymol import cmd
rms = cmd.intra_rms("(name ca)",1)
USER COMMENTS
See Rms for selection caveats for this group of commands.