bpp-phyl3  3.0.0
bpp::NeighborJoining Class Reference

The neighbor joining distance method. More...

#include <Bpp/Phyl/Distance/NeighborJoining.h>

+ Inheritance diagram for bpp::NeighborJoining:
+ Collaboration diagram for bpp::NeighborJoining:

Public Member Functions

 NeighborJoining (bool rooted=false, bool positiveLengths=false, bool verbose=true)
 Create a new NeighborJoining object instance, without performing any computation. More...
 
 NeighborJoining (const DistanceMatrix &matrix, bool rooted=false, bool positiveLengths=false, bool verbose=true)
 Create a new NeighborJoining object instance and compute a tree from a distance matrix. More...
 
virtual ~NeighborJoining ()
 
NeighborJoiningclone () const
 
std::string getName () const
 
virtual void setDistanceMatrix (const DistanceMatrix &matrix)
 Set the distance matrix to use. More...
 
virtual void outputPositiveLengths (bool yn)
 
bool hasTree () const override
 
const Treetree () const override
 
void computeTree () override
 Compute the tree corresponding to the distance matrix. More...
 
void setVerbose (bool yn) override
 
bool isVerbose () const override
 

Protected Member Functions

std::vector< size_t > getBestPair ()
 Get the best pair of nodes to agglomerate. More...
 
std::vector< double > computeBranchLengthsForPair (const std::vector< size_t > &pair)
 Compute the branch lengths for two nodes to agglomerate. More...
 
double computeDistancesFromPair (const std::vector< size_t > &pair, const std::vector< double > &branchLengths, size_t pos)
 Actualizes the distance matrix according to a given pair and the corresponding branch lengths. More...
 
void finalStep (int idRoot)
 Method called when there ar eonly three remaining node to agglomerate, and creates the root node of the tree. More...
 
Specific methods.
virtual NodegetLeafNode (int id, const std::string &name)
 Get a leaf node. More...
 
virtual NodegetParentNode (int id, Node *son1, Node *son2)
 Get an inner node. More...
 

Protected Attributes

std::vector< double > sumDist_
 
bool positiveLengths_
 
DistanceMatrix matrix_
 
std::unique_ptr< Treetree_
 
std::map< size_t, Node * > currentNodes_
 
bool verbose_
 
bool rootTree_
 

Detailed Description

The neighbor joining distance method.

Reference: N Saitou and M Nei (1987), Molecular Biology and Evolution 4(4) 406-25.

Definition at line 19 of file NeighborJoining.h.

Constructor & Destructor Documentation

◆ NeighborJoining() [1/2]

bpp::NeighborJoining::NeighborJoining ( bool  rooted = false,
bool  positiveLengths = false,
bool  verbose = true 
)
inline

Create a new NeighborJoining object instance, without performing any computation.

Parameters
rootedTell if the output tree should be rooted.
positiveLengthsTell if negative lengths should be avoided.
verboseAllow to display extra information, like progress bars.

Definition at line 34 of file NeighborJoining.h.

Referenced by clone().

◆ NeighborJoining() [2/2]

bpp::NeighborJoining::NeighborJoining ( const DistanceMatrix matrix,
bool  rooted = false,
bool  positiveLengths = false,
bool  verbose = true 
)
inline

Create a new NeighborJoining object instance and compute a tree from a distance matrix.

Parameters
matrixInput distance matrix.
rootedTell if the output tree should be rooted.
positiveLengthsTell if negative lengths should be avoided.
verboseAllow to display extra information, like progress bars.

Definition at line 48 of file NeighborJoining.h.

References bpp::AbstractAgglomerativeDistanceMethod::computeTree(), bpp::DistanceMatrix::size(), and sumDist_.

◆ ~NeighborJoining()

virtual bpp::NeighborJoining::~NeighborJoining ( )
inlinevirtual

Definition at line 57 of file NeighborJoining.h.

Member Function Documentation

◆ clone()

NeighborJoining* bpp::NeighborJoining::clone ( ) const
inlinevirtual

Implements bpp::AgglomerativeDistanceMethodInterface.

Definition at line 59 of file NeighborJoining.h.

References NeighborJoining().

◆ computeBranchLengthsForPair()

std::vector< double > NeighborJoining::computeBranchLengthsForPair ( const std::vector< size_t > &  pair)
protectedvirtual

Compute the branch lengths for two nodes to agglomerate.

+---l1-----N1
|
+---l2-----N2

This method compute l1 and l2 given N1 and N2.

Parameters
pairThe indices of the nodes to be agglomerated.
Returns
A size 2 vector with branch lengths.

Implements bpp::AbstractAgglomerativeDistanceMethod.

Definition at line 56 of file NeighborJoining.cpp.

◆ computeDistancesFromPair()

double NeighborJoining::computeDistancesFromPair ( const std::vector< size_t > &  pair,
const std::vector< double > &  branchLengths,
size_t  pos 
)
protectedvirtual

Actualizes the distance matrix according to a given pair and the corresponding branch lengths.

Parameters
pairThe indices of the nodes to be agglomerated.
branchLengthsThe corresponding branch lengths.
posThe index of the node whose distance ust be updated.
Returns
The distance between the 'pos' node and the agglomerated pair.

Implements bpp::AbstractAgglomerativeDistanceMethod.

Definition at line 73 of file NeighborJoining.cpp.

◆ computeTree()

void AbstractAgglomerativeDistanceMethod::computeTree ( )
overridevirtualinherited

Compute the tree corresponding to the distance matrix.

This method implements the following algorithm: 1) Build all leaf nodes (getLeafNode method) 2) Get the best pair to agglomerate (getBestPair method) 3) Compute the branch lengths for this pair (computeBranchLengthsForPair method) 4) Build the parent node of the pair (getParentNode method) 5) For each remaining node, update distances from the pair (computeDistancesFromPair method) 6) Return to step 2 while there are more than 3 remaining nodes. 7) Perform the final step, and send a rooted or unrooted tree.

Implements bpp::DistanceMethodInterface.

Reimplemented in bpp::BioNJ.

Definition at line 26 of file AbstractAgglomerativeDistanceMethod.cpp.

References bpp::ApplicationTools::displayGauge(), and bpp::Node::setDistanceToFather().

Referenced by bpp::HierarchicalClustering::HierarchicalClustering(), NeighborJoining(), and bpp::PGMA::PGMA().

◆ finalStep()

void NeighborJoining::finalStep ( int  idRoot)
protectedvirtual

Method called when there ar eonly three remaining node to agglomerate, and creates the root node of the tree.

Parameters
idRootThe id of the root node.

Implements bpp::AbstractAgglomerativeDistanceMethod.

Definition at line 81 of file NeighborJoining.cpp.

References bpp::Node::addSon(), and bpp::Node::setDistanceToFather().

◆ getBestPair()

std::vector< size_t > NeighborJoining::getBestPair ( )
protectedvirtual

Get the best pair of nodes to agglomerate.

Define the criterion to chose the next pair of nodes to agglomerate. This criterion uses the matrix_ distance matrix.

Returns
A size 2 vector with the indices of the nodes.
Exceptions
ExceptionIf an error occurred.

Implements bpp::AbstractAgglomerativeDistanceMethod.

Definition at line 15 of file NeighborJoining.cpp.

References bpp::numeric::log().

◆ getLeafNode()

Node * AbstractAgglomerativeDistanceMethod::getLeafNode ( int  id,
const std::string &  name 
)
protectedvirtualinherited

Get a leaf node.

Create a new node with the given id and name.

Parameters
idThe id of the node.
nameThe name of the node.
Returns
A pointer toward a new node object.

Reimplemented in bpp::PGMA, and bpp::HierarchicalClustering.

Definition at line 75 of file AbstractAgglomerativeDistanceMethod.cpp.

◆ getName()

std::string bpp::NeighborJoining::getName ( ) const
inlinevirtual
Returns
The name of the distance method.

Implements bpp::DistanceMethodInterface.

Definition at line 62 of file NeighborJoining.h.

◆ getParentNode()

Node * AbstractAgglomerativeDistanceMethod::getParentNode ( int  id,
Node son1,
Node son2 
)
protectedvirtualinherited

Get an inner node.

Create a new node with the given id, and set its sons.

Parameters
idThe id of the node.
son1The first son of the node.
son2The second son of the node.
Returns
A pointer toward a new node object.

Reimplemented in bpp::PGMA, and bpp::HierarchicalClustering.

Definition at line 80 of file AbstractAgglomerativeDistanceMethod.cpp.

References bpp::Node::addSon().

◆ hasTree()

bool bpp::AbstractAgglomerativeDistanceMethod::hasTree ( ) const
inlineoverridevirtualinherited
Returns
True if a tree has been computed.

Implements bpp::DistanceMethodInterface.

Definition at line 86 of file AbstractAgglomerativeDistanceMethod.h.

References bpp::AbstractAgglomerativeDistanceMethod::tree_.

◆ isVerbose()

bool bpp::AbstractAgglomerativeDistanceMethod::isVerbose ( ) const
inlineoverridevirtualinherited
Returns
True if verbose mode is enabled.

Implements bpp::DistanceMethodInterface.

Definition at line 114 of file AbstractAgglomerativeDistanceMethod.h.

References bpp::AbstractAgglomerativeDistanceMethod::verbose_.

◆ outputPositiveLengths()

virtual void bpp::NeighborJoining::outputPositiveLengths ( bool  yn)
inlinevirtual

Definition at line 70 of file NeighborJoining.h.

References positiveLengths_.

Referenced by bpp::BioNJ::BioNJ().

◆ setDistanceMatrix()

virtual void bpp::NeighborJoining::setDistanceMatrix ( const DistanceMatrix matrix)
inlinevirtual

Set the distance matrix to use.

Parameters
matrixThe matrix to use.
Exceptions
ExceptionIn case an incorrect matrix is provided (eg smaller than 3).

Reimplemented from bpp::AbstractAgglomerativeDistanceMethod.

Reimplemented in bpp::BioNJ.

Definition at line 64 of file NeighborJoining.h.

References bpp::AbstractAgglomerativeDistanceMethod::setDistanceMatrix(), bpp::DistanceMatrix::size(), and sumDist_.

Referenced by bpp::BioNJ::setDistanceMatrix().

◆ setVerbose()

void bpp::AbstractAgglomerativeDistanceMethod::setVerbose ( bool  yn)
inlineoverridevirtualinherited
Parameters
ynEnable/Disable verbose mode.

Implements bpp::DistanceMethodInterface.

Definition at line 113 of file AbstractAgglomerativeDistanceMethod.h.

References bpp::AbstractAgglomerativeDistanceMethod::verbose_.

◆ tree()

const Tree& bpp::AbstractAgglomerativeDistanceMethod::tree ( ) const
inlineoverridevirtualinherited
Returns
A reference toward the computed tree. Throws an exception if no tree was computed.

Implements bpp::DistanceMethodInterface.

Definition at line 91 of file AbstractAgglomerativeDistanceMethod.h.

References bpp::AbstractAgglomerativeDistanceMethod::tree_.

Member Data Documentation

◆ currentNodes_

std::map<size_t, Node*> bpp::AbstractAgglomerativeDistanceMethod::currentNodes_
protectedinherited

◆ matrix_

DistanceMatrix bpp::AbstractAgglomerativeDistanceMethod::matrix_
protectedinherited

◆ positiveLengths_

bool bpp::NeighborJoining::positiveLengths_
protected

Definition at line 24 of file NeighborJoining.h.

Referenced by outputPositiveLengths().

◆ rootTree_

bool bpp::AbstractAgglomerativeDistanceMethod::rootTree_
protectedinherited

◆ sumDist_

std::vector<double> bpp::NeighborJoining::sumDist_
protected

Definition at line 23 of file NeighborJoining.h.

Referenced by NeighborJoining(), and setDistanceMatrix().

◆ tree_

◆ verbose_


The documentation for this class was generated from the following files: