IMP  2.0.1
The Integrative Modeling Platform
em/cube.py

The example creates a simple mrc file that is filled uniformly with 1s. In addition, a chimera file is written with a marker at each corner of the density. When both files are opened, the density should be centered among the markers. This can be used for testing for registration errors when reading and writing density maps.

1 ## \example em/cube.py
2 ## The example creates a simple mrc file that is filled uniformly with 1s. In addition, a chimera file is written with a marker at each corner of the density. When both files are opened, the density should be centered among the markers. This can be used for testing for registration errors when reading and writing density maps.
3 
4 import IMP.em
5 import IMP.display
6 
8  IMP.algebra.Vector3D(11,11,11))
9 dm= IMP.em.create_density_map(bb, 2.5)
11 print dmbb, bb
12 
13 for i in range(0, dm.get_number_of_voxels()):
14  dm.set_value(i,1)
15 
16 nm=IMP.create_temporary_file_name("cube", ".mrc")
17 print nm
18 IMP.em.write_map(dm, nm)
19 
20 nm=IMP.create_temporary_file_name("cube", ".py")
21 print nm
23 
24 for v in IMP.algebra.get_vertices(bb):
26  w.add_geometry(g)