IMP logo
IMP Reference Guide  develop.d97d4ead1f,2024/11/21
The Integrative Modeling Platform
multistate.py
1 ## \example multistate.py
2 #
3 
4 import IMP.atom
5 import sys
6 
7 IMP.setup_from_argv(sys.argv, "multistate")
8 
9 m = IMP.Model()
10 
11 rt = IMP.atom.Hierarchy.setup_particle(m, m.add_particle("root"))
12 
13 
14 def create_one():
15  h = IMP.atom.read_pdb(IMP.atom.get_example_path("1d3d-protein.pdb"), m)
16  return h
17 
18 
19 h0 = create_one()
20 rt.add_child(h0)
22 h1 = create_one()
23 rt.add_child(h1)
25 
26 
28  rt,
29  state_index=1,
30  residue_index=8,
31  atom_type=IMP.atom.AT_CA)
32 
33 # we get the 8th CA from state 1
34 for p in r8.get_selected_particles():
35  print(IMP.atom.get_state_index(p), p)
Strings setup_from_argv(const Strings &argv, std::string description, std::string positional_description, int num_positional)
static State setup_particle(Model *m, ParticleIndex pi, unsigned int index)
Definition: State.h:39
std::string get_example_path(std::string file_name)
Return the full path to one of this module's example files.
void read_pdb(TextInput input, int model, Hierarchy h)
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:86
static Hierarchy setup_particle(Model *m, ParticleIndex pi, ParticleIndexesAdaptor children=ParticleIndexesAdaptor())
Create a Hierarchy of level t by adding the needed attributes.
int get_state_index(Hierarchy h)
Walk up the hierarchy to find the current state.
Functionality for loading, creating, manipulating and scoring atomic structures.
Select hierarchy particles identified by the biological name.
Definition: Selection.h:70