schrodinger.trajectory.prody.modeset module¶
This module defines a pointer class for handling subsets of normal modes.
-
class
schrodinger.trajectory.prody.modeset.
ModeSet
(model, indices)[source]¶ Bases:
object
A class for providing access to subset of mode data. Instances are obtained by slicing an NMA model (
ANM
,GNM
, orPCA
). ModeSet’s contain a reference to the model and a list of mode indices. Methods common to NMA models are also defined for mode sets.-
numModes
()[source]¶ Return number of modes in the instance (not necessarily maximum number of possible modes).
-
getEigvals
()[source]¶ Return eigenvalues. For
PCA
andEDA
models built using coordinate data in Å, unit of eigenvalues is |A2|. ForANM
andGNM
, on the other hand, eigenvalues are in arbitrary or relative units but they correlate with stiffness of the motion along associated eigenvector.
-
getVariances
()[source]¶ Return variances. For
PCA
andEDA
models built using coordinate data in Å, unit of variance is |A2|. ForANM
andGNM
, on the other hand, variance is the inverse of the eigenvalue, so it has arbitrary or relative units.
-
getEigvecs
()¶ Return a copy of eigenvectors array.
-