IMP  2.1.1
The Integrative Modeling Platform
restrainer/simple_excluded_volume.py

This example shows how to create simple IMP::core::ExcludedVolumeRestraint.

1 ## \example restrainer/simple_excluded_volume.py
2 # This example shows how to create simple IMP::core::ExcludedVolumeRestraint.
3 #
4 
5 # -- File: simple_excluded_volume.py --#
6 
7 import IMP
8 import IMP.core
9 import IMP.atom
10 import IMP.restrainer
11 
12 m = IMP.kernel.Model()
13 
16  IMP.restrainer.get_example_path("input.pdb"), m, sel)
18  IMP.restrainer.get_example_path("input.pdb"), m, sel)
19 
21 mhs.append(p0)
22 mhs.append(p1)
23 
24 ps = []
25 for mh in mhs:
26  ps.append(mh.get_particle())
27 
29 
31 
32 r = sev.get_restraint()
33 
34 m.add_restraint(r)