IMP logo
IMP Reference Guide  develop.7400db2aee,2024/11/23
The Integrative Modeling Platform
atom/load_protein_restrain_bonds.py

Load a protein from a PDB file and then restrain all the bonds to have their current length.

1 ## \example atom/load_protein_restrain_bonds.py
2 # Load a protein from a PDB file and then restrain all the bonds to have their
3 # current length.
4 #
5 
6 import IMP.atom
7 import IMP.container
8 import sys
9 
10 IMP.setup_from_argv(sys.argv, "load protein restrain bonds")
11 
12 m = IMP.Model()
13 prot = IMP.atom.read_pdb(IMP.atom.get_example_path("example_protein.pdb"), m)
15 bds = IMP.atom.get_internal_bonds(prot)
17 h = IMP.core.Harmonic(0, 1)
20 print(br.evaluate(False))