Difference between revisions of "Split states"

From PyMOLWiki
Jump to navigation Jump to search
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
=Overview=
+
'''Split_States''' splits and orients multiple models and multimers from the biological unit file into a set of single-state molecular objects.
'''Split_States''' splits and orients multiple models and multimers from the biological unit file.
 
 
 
= Overview =
 
[[Split_States]] separates a multi-state molecular object into a set of single-state molecular objects.
 
 
 
      
 
      
 
== Syntax ==
 
== Syntax ==
Line 11: Line 6:
 
</source>
 
</source>
  
This splits the '''object''' from '''first''' to '''last''' out to the array of objects prefixed by '''prefix'''.  The '''prefix''' option is very handy is all your states--or a subset of the states--have the same name.
+
This splits the '''object''' from '''first''' to '''last''' out to the array of objects prefixed by '''prefix'''.  The '''prefix''' option is very handy if all your states--or a subset of the states--have the same name.
  
 
==Using==
 
==Using==
Line 40: Line 35:
 
</gallery>
 
</gallery>
  
[[Category:Commands|split states]]
+
= See Also =
[[Category:States]]
+
*[http://www.rcsb.org/pdb/static.do?p=education_discussion/Looking-at-Structures/bioassembly_tutorial.html PDB Tutorial Biological Units]
 +
 
 +
 
 +
[[Category:Commands|Split States]]
 +
[[Category:States|Split States]]

Latest revision as of 10:26, 21 September 2012

Split_States splits and orients multiple models and multimers from the biological unit file into a set of single-state molecular objects.

Syntax

split_states object [, first [, last [, prefix ]]]

This splits the object from first to last out to the array of objects prefixed by prefix. The prefix option is very handy if all your states--or a subset of the states--have the same name.

Using

To use split_states simply Load your molecule

# example usage
load fileName.pdb1, name
split_states name
delete name

# split all the states to objects starting with conf
fetch 1nmr
split_states 1nmr, prefix=conf

Example

1VLS: A dimer.

load 1vls.pdb1, 1vls
split_states 1vls
dele 1vls

See Also