Package jebl.evolution.distances
Class BasicDistanceMatrix
- java.lang.Object
-
- jebl.evolution.distances.BasicDistanceMatrix
-
- All Implemented Interfaces:
DistanceMatrix
- Direct Known Subclasses:
F84DistanceMatrix,HKYDistanceMatrix,JukesCantorDistanceMatrix,SequenceAlignmentsDistanceMatrix,TamuraNeiDistanceMatrix
public class BasicDistanceMatrix extends java.lang.Object implements DistanceMatrix
- Version:
- $Id: BasicDistanceMatrix.java 842 2007-11-12 22:33:48Z twobeers $
- Author:
- Andrew Rambaut, Alexei Drummond
-
-
Constructor Summary
Constructors Constructor Description BasicDistanceMatrix(java.util.Collection<Taxon> taxa, double[][] distances)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetDistance(int row, int column)Gets the distance at a particular row and columndoublegetDistance(Taxon taxonRow, Taxon taxonColumn)Gets the distance between 2 taxadouble[][]getDistances()Gets a 2-dimensional array containing the distancesintgetSize()Gets the size of the matrix (which is square), i.e., number of rows or columns.DistanceMatrixgetSubmatrix(java.util.Collection<Taxon> taxonSubset)Gets a sub-matrix for only those taxa in the collection (all of which should be present in this matrix).java.util.List<Taxon>getTaxa()
-
-
-
Constructor Detail
-
BasicDistanceMatrix
public BasicDistanceMatrix(java.util.Collection<Taxon> taxa, double[][] distances)
-
-
Method Detail
-
getSize
public int getSize()
Gets the size of the matrix (which is square), i.e., number of rows or columns.- Specified by:
getSizein interfaceDistanceMatrix- Returns:
- the size
-
getTaxa
public java.util.List<Taxon> getTaxa()
- Specified by:
getTaxain interfaceDistanceMatrix- Returns:
- the list of taxa that the state values correspond to.
-
getDistance
public double getDistance(int row, int column)Gets the distance at a particular row and column- Specified by:
getDistancein interfaceDistanceMatrix- Parameters:
row- the row indexcolumn- the column index- Returns:
- the distance
-
getDistance
public double getDistance(Taxon taxonRow, Taxon taxonColumn)
Gets the distance between 2 taxa- Specified by:
getDistancein interfaceDistanceMatrix- Parameters:
taxonRow-taxonColumn-- Returns:
- the distance
-
getSubmatrix
public DistanceMatrix getSubmatrix(java.util.Collection<Taxon> taxonSubset)
Gets a sub-matrix for only those taxa in the collection (all of which should be present in this matrix).- Specified by:
getSubmatrixin interfaceDistanceMatrix- Parameters:
taxonSubset-- Returns:
- the new submatrix
-
getDistances
public double[][] getDistances()
Gets a 2-dimensional array containing the distances- Specified by:
getDistancesin interfaceDistanceMatrix- Returns:
- the distances
-
-