IMP logo
IMP Reference Guide  develop.d97d4ead1f,2024/11/21
The Integrative Modeling Platform
container/connectivity.py

Shows how to use and visualize the IMP::container::ConnectingPairContainer.

1 ## \example container/connectivity.py
2 # Shows how to use and visualize the IMP::container::ConnectingPairContainer.
3 
4 import IMP.container
5 import IMP.rmf
6 import RMF
7 import sys
8 
9 IMP.setup_from_argv(sys.argv, "connectivity")
10 
11 m = IMP.Model()
12 ds = IMP.core.create_xyzr_particles(m, 20, .1)
15 m.update()
17 w = RMF.create_rmf_file("pairs.rmf")
19 IMP.rmf.save_frame(w, "zero")
20 print(pg.get_name())
21 del w