skbio.sequence.SubstitutionMatrix.__eq__#
- SubstitutionMatrix.__eq__(other)[source]#
Compare this dissimilarity matrix to another for equality.
Two dissimilarity matrices are equal if they have the same shape, IDs (in the same order!), and have data arrays that are equal.
Checks are not performed to ensure that other is a DissimilarityMatrix instance.
- Parameters:
- otherDissimilarityMatrix
Dissimilarity matrix to compare to for equality.
- Returns:
- bool
True
if self is equal to other,False
otherwise.