Topology type¶
- type
Topology¶ - A
Topologydescribes the organisation of the particles in the system: what their names are, how they are bonded together, etc. ATopologyis a list ofAtomsin the system, together with the list of bonds between the atoms.
- function
Topology()¶ - Create an empty
Topology.
- function
Topology(frame::Frame)¶ - Get a copy of the
Topologyof the givenframe.
- function
deepcopy(topology::Topology)¶ - Make a deep copy of a
topology.
- function
size(topology::Topology)¶ - Get the
Topologysize, i.e. the current number of atoms.
- function
add_atom!(topology::Topology, atom::Atom)¶ - Add an
atomat the end of atopology.
- function
remove_atom!(topology::Topology, index::Integer)¶ - Remove the atom at the given
indexfrom atopology.
- function
bonds_count(topology::Topology)¶ - Get the number of bonds in the
topology.
- function
angles_count(topology::Topology)¶ - Get the number of angles in the
topology.
- function
dihedrals_count(topology::Topology)¶ - Get the number of dihedral angles in the
topology.
- function
impropers_count(topology::Topology)¶ - Get the number of improper angles in the
topology.
- function
bonds(topology::Topology)¶ - Get the bonds in the
topology, in a2 x bonds_count(topology)array.
- function
angles(topology::Topology)¶ - Get the angles in the
topology, in a3 x angles_count(topology)array.
- function
dihedrals(topology::Topology)¶ - Get the dihedral angles in the
topology, in a4 x dihedrals_count(topology)array.
- function
impropers(topology::Topology)¶ - Get the improper angles in the
topology, in a4 x impropers_count(topology)array.
- function
add_bond!(topology::Topology, i::Integer, j::Integer, order = nothing)¶ - Add a bond between the atoms
iandjin thetopology, optionaly setting the bondorder.
- function
remove_bond!(topology::Topology, i::Integer, j::Integer)¶ - Remove any existing bond between the atoms
iandjin thetopology.
- function
bond_order(topology::Topology, i::Integer, j::Integer)¶ - Get the
BondOrderfor the bond between atomsiandjin thetopology.
- function
bond_orders(topology::Topology)¶ - Get the
BondOrderfor all the bonds in thetopology.
- function
add_residue!(topology::Topology, residue::Residue)¶ Add a copy of
residueto thistopology.The residue id must not already be in the topology, and the residue must contain only atoms that are not already in another residue.
- function
count_residues(topology::Topology)¶ - Get the number of residues in the
topology.
- function
are_linked(topology::Topology, first::Residue, second::Residue)¶ - Check if the two residues
firstandsecondfrom thetopologyare linked together, i.e. if there is a bond between one atom in the first residue and one atom in the second one.
- function
resize!(topology::Topology, size::Integer)¶ Resize the
topologyto holdnatomsatoms. If the new number of atoms is bigger than the current number, new atoms will be created with an empty name and type.If it is lower than the current number of atoms, the last atoms will be removed, together with the associated bonds, angles and dihedrals.