PDB Structure Ensemble

This module defines a class for handling ensembles of PDB conformations.

class PDBEnsemble(title='Unknown')[source]

This class enables handling coordinates for heterogeneous structural datasets and stores identifiers for individual conformations.

See usage usage in Heterogeneous X-ray Structures, Multimeric Structures, and Homologous Proteins.

Note

This class is designed to handle conformations with missing coordinates, e.g. atoms that are note resolved in an X-ray structure. For unresolved atoms, the coordinates of the reference structure is assumed in RMSD calculations and superpositions.

addCoordset(coords, weights=None, label=None)[source]

Add coordinate set(s) to the ensemble. coords must be a Numpy array with suitable shape and dimensionality, or an object with getCoordsets() method. weights is an optional argument. If provided, its length must match number of atoms. Weights of missing (not resolved) atoms must be 0 and weights of those that are resolved can be anything greater than 0. If not provided, weights of all atoms for this coordinate set will be set equal to 1. label, which may be a PDB identifier or a list of identifiers, is used to label conformations.

delCoordset(index)[source]

Delete a coordinate set from the ensemble.

getAtoms()

Return associated/selected atoms.

getConformation(index)[source]

Return conformation at given index.

getCoords()

Return a copy of reference coordinates for selected atoms.

getCoordsets(indices=None)[source]

Return a copy of coordinate set(s) at given indices for selected atoms. indices may be an integer, a list of integers or None. None returns all coordinate sets.

Warning

When there are atoms with weights equal to zero (0), their coordinates will be replaced with the coordinates of the ensemble reference coordinate set.

getDeviations()

Return deviations from reference coordinates for selected atoms. Conformations can be aligned using one of superpose() or iterpose() methods prior to calculating deviations.

getLabels()[source]

Return identifiers of the conformations in the ensemble.

getMSFs()[source]

Calculate and return mean square fluctuations (MSFs). Note that you might need to align the conformations using superpose() or iterpose() before calculating MSFs.

getRMSDs()[source]

Calculate and return root mean square deviations (RMSDs). Note that you might need to align the conformations using superpose() or iterpose() before calculating RMSDs.

getRMSFs()

Return root mean square fluctuations (RMSFs) for selected atoms. Conformations can be aligned using one of superpose() or iterpose() methods prior to RMSF calculation.

getTitle()

Return title of the ensemble.

getWeights()

Return a copy of weights of selected atoms.

iterCoordsets()[source]

Iterate over coordinate sets. A copy of each coordinate set for selected atoms is returned. Reference coordinates are not included.

iterpose(rmsd=0.0001)[source]

Iteratively superpose the ensemble until convergence. Initially, all conformations are aligned with the reference coordinates. Then mean coordinates are calculated, and are set as the new reference coordinates. This is repeated until reference coordinates do not change. This is determined by the value of RMSD between the new and old reference coordinates. Note that at the end of the iterative procedure the reference coordinate set will be average of conformations in the ensemble.

Parameters:rmsd (float) – change in reference coordinates to determine convergence, default is 0.0001 Å RMSD
numAtoms()

Return number of atoms.

numConfs()

Return number of conformations.

numCoordsets()

Return number of conformations.

numSelected()

Return number of selected atoms. Number of all atoms will be returned if a selection is not made. A subset of atoms can be selected by passing a selection to setAtoms().

setAtoms(atoms)

Set atoms or specify a selection of atoms to be considered in calculations and coordinate requests. When a selection is set, corresponding subset of coordinates will be considered in, for example, alignments and RMSD calculations. Setting atoms also allows some functions to access atomic data when needed. For example, Ensemble and Conformation instances become suitable arguments for writePDB(). Passing None as atoms argument will deselect atoms.

setCoords(coords)

Set coords as the ensemble reference coordinate set. coords may be an array with suitable data type, shape, and dimensionality, or an object with getCoords() method.

setTitle(title)

Set title of the ensemble.

setWeights(weights)[source]

Set atomic weights.

superpose()

Superpose the ensemble onto the reference coordinates.

Read the Docs v: v1.5
Versions
latest
v1.5
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.