next up previous contents index
Next: model.reorder_atoms() standardize Up: The model class: handling Previous: model.rename_segments() rename   Contents   Index

model.to_iupac() -- standardize certain dihedral angles

to_iupac()
This routine swaps specific pairs of atoms within some residues of MODEL so that certain dihedral angles are within $ \pm 90$ $ {}^{o}$ , satisfying the IUPAC convention [IUPAC-IUB, 1970,Kendrew et al., 1970]. These residues, pairs of atoms, and dihedral angles are:

It is possible that for distorted sidechains, neither of the two possibilities satisfies the IUPAC convention. In such a case, a warning message is written to the log file.

Example: examples/commands/iupac_model.py


# This will swap certain atom names in some planar sidechains to satisfy
# the IUPAC convention.

from modeller import *

env = environ()
env.io.atom_files_directory = ['../atom_files']
log.level(1, 1, 1, 1, 0)

mdl = model(env, file='2abx')
mdl.to_iupac()
mdl.write(file='2abx.iup')



Automatic builds 2011-03-29