IMP  2.4.0
The Integrative Modeling Platform
em/fit_restraint.py

A simple example showing how to set up a fit restraint. The number of spheres and resolution are randomly chosen and so should not be considered significant.

1 ## \example em/fit_restraint.py
2 # A simple example showing how to set up a fit restraint. The number of
3 # spheres and resolution are randomly chosen and so should not be
4 # considered significant.
5 
6 from __future__ import print_function
7 import IMP.em
8 import IMP.core
9 import IMP.atom
10 IMP.base.set_log_level(IMP.base.SILENT)
11 m = IMP.kernel.Model()
12 # 1. setup the input protein
13 # 1.1 select a selector.
15 # 1.2 read the protein
16 mh = IMP.atom.read_pdb(IMP.em.get_example_path("input.pdb"), m, sel)
17 ps = IMP.core.get_leaves(mh)
19 # 2. read the density map
20 resolution = 8.
21 voxel_size = 1.5
22 dmap = IMP.em.read_map(
24 dmap.get_header_writable().set_resolution(resolution)
25 # 3. calculate the cross correlation between the density and the map
26 print("The cross-correlation score is:", 1. - IMP.em.compute_fitting_score(ps, dmap))
27 # 4. add a fitting restraint
28 r = IMP.em.FitRestraint(ps, dmap)
29 m.add_restraint(r)
30 print("The fit of the particles in the density is:", r.evaluate(False))