-
Notifications
You must be signed in to change notification settings - Fork 826
Description
-
Bond.__eq__does not check bond order incore.topologyobjects:
mdanalysis/package/MDAnalysis/core/topologyobjects.py
Lines 163 to 167 in e110108
Two :class:`Bond` instances can be compared with the ``==`` and ``!=`` operators. A bond is equal to another if the same atom numbers are connected and they have the same bond order. The ordering of the two atom numbers is ignored as is the fact that a bond was guessed.
mdanalysis/package/MDAnalysis/core/topologyobjects.py
Lines 135 to 140 in e110108
def __eq__(self, other): """Check whether two bonds have identical contents""" if not self.universe == other.universe: return False return (np.array_equal(self.indices, other.indices) or np.array_equal(self.indices[::-1], other.indices)) -
All the "Reads the following Attributes" and "Guesses the following Attributes" should be double-checked in
topology.__init__-
__init__does not include ITPParser -
PSFParser:.. _PSF: http://www.charmm.org/documentation/c35b1/struct.htmllink broken. -
MinimalParser: Ends in the middle of a sentence:
This requires that the coordinate format has -
TRJReaderoutdated: Outdated documentation for AMBER TRJReader #2398
-
-
distis missing documentation of theboxparameter (analysis.distances.dist). Note that AtomGroups can be (usually are?) from different Universes. Note that even if the Universe has dimensions associated,distdoes not use them unless explicitly passed intobox -
Add lines to initialise
kanddistindistances.self_distance_arrayreturns example -
Update Molnums documentation, which is identical to Moltypes
-
All of the
helanaldocumentation. Best to leave this after update helanal to AnalysisBase #2452 is addressed -
AtomGroup.guess_bonds misleading documentation, could pass in fudge_factor #2395 fix up
guess_bondsdocumentation -
All of the PSA documentation. Perhaps it will get AnalysisBased?
-
encore.hes returns unreadable details which are not documented
-
encore.ClusteringMethod.KMeans documents precompute_distances without actually having it as a kwarg
-
encore.DimensionalityReductionMethod.StochasticProximityEmbeddingNative documents the default number of dimensions as 3, but it's actually 2
-
for encore.hes, ces, dres: document that the method returns averages and standard deviations if
estimate_error=True -
for encore.ces_convergence document the output. The shape does not include
preference_values. -
for rdf.InterRDF_s document
densitykwarg -
fix base.AnalysisFromFunction raises ValueError
-
document kwargs in Ramachandran.plot
-
PCA.mean_atoms is not the mean positions, PCA.mean is