In this example a pdb is converted into a multiresolution model, somewhat painfully.
5 from __future__
import print_function, division
19 chains = IMP.atom.get_by_type(h, IMP.atom.CHAIN_TYPE)
25 def recursive_approximation(res):
26 print(
"approximating", res)
31 me = recursive_approximation(res[0:lr // 4])\
32 + recursive_approximation(res[lr // 4: lr // 2])\
33 + recursive_approximation(res[lr // 2: 3 * lr // 4])\
34 + recursive_approximation(res[3 * lr // 4: lr])
49 res = IMP.atom.get_by_type(h, IMP.atom.RESIDUE_TYPE)
55 me = recursive_approximation(res[0:lr // 4])\
56 + recursive_approximation(res[lr // 4: lr // 2])\
57 + recursive_approximation(res[lr // 2: 3 * lr // 4])\
58 + recursive_approximation(res[3 * lr // 4: lr])
64 rmf = RMF.create_rmf_file(fn)