The type of an atom.
The standard Atom names in IMP are derived from the PDB names as follows:
- the AtomType of a protein, DNA or RNA atom is the AtomType created from the PDB atom name string with spaces removed. For example, a protein C-alpha has the name AtomType("CA").
- the AtomType for a hetero (HETATM) atom is the AtomType created by prefixing "HET:" to the PBD atom name string (this time without spaces removed). For example, a calcium atom is AtomType("HET:CA ").
We provide an AtomType instance for each of the standard PDB atom types. These have names such as IMP::atom::AT_N. The full list is elided for readability.
An AtomType implies an element (and hence a mass). While we have the associations set up for protein, DNA and RNA atoms, it may be necessary to add them for hetero atoms. You can use the add_atom_type() function to do this.
All atoms have the mass stored internally using a Mass decorator.
- See also:
- IMP::atom::Atom