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

In this example a pdb is converted into a multiresolution model, somewhat painfully.

1 ## \example rmf/multiresolution.py
2 # In this example a pdb is converted into a multiresolution model,
3 # somewhat painfully.
4 
5 import IMP.atom
6 import sys
7 import RMF
8 import IMP.rmf
9 
10 IMP.setup_from_argv(sys.argv, "Create a multiresolution rmf file")
11 
12 pdbname = IMP.rmf.get_example_path("big.pdb")
13 
14 m = IMP.Model()
15 h = IMP.atom.read_pdb(pdbname, m)
17 
18 chains = IMP.atom.get_by_type(h, IMP.atom.CHAIN_TYPE)
19 
20 if IMP.get_bool_flag("run_quick_test"):
21  chains = [chains[0]]
22 
23 
24 def recursive_approximation(res):
25  print("approximating", res)
26  lr = len(res)
27  if lr <= 1:
28  return res
29  if lr > 4:
30  me = recursive_approximation(res[0:lr // 4])\
31  + recursive_approximation(res[lr // 4: lr // 2])\
32  + recursive_approximation(res[lr // 2: 3 * lr // 4])\
33  + recursive_approximation(res[3 * lr // 4: lr])
34  else:
35  me = res
36  p = IMP.Particle(m)
39  nm = str(IMP.atom.Residue(res[0]).get_index()) + "-"\
40  + str(IMP.atom.Residue(res[-1]).get_index())
41  p.set_name(nm)
42  for mm in me:
43  hc.add_child(mm)
44  return [hc]
45 
46 
47 for c in chains:
48  res = IMP.atom.get_by_type(h, IMP.atom.RESIDUE_TYPE)
49  for r in res:
50  c.remove_child(r)
51  lvs = IMP.atom.get_leaves(r)
53  lr = len(res)
54  me = recursive_approximation(res[0:lr // 4])\
55  + recursive_approximation(res[lr // 4: lr // 2])\
56  + recursive_approximation(res[lr // 2: 3 * lr // 4])\
57  + recursive_approximation(res[3 * lr // 4: lr])
58  for mm in me:
59  c.add_child(mm)
60 
61 print("writing")
62 fn = "multires.rmf"
63 rmf = RMF.create_rmf_file(fn)
64 print("adding")
65 IMP.rmf.add_hierarchies(rmf, chains)
66 
67 print("see file", fn)