Neighbor Joining

In bioinformatics, neighbor joining is a bottom-up (agglomerative) clustering method for the creation of phylogenetic trees, created by Naruya Saitou and Masatoshi Nei in 1987.

Usually based on DNA or protein sequence data, the algorithm requires knowledge of the distance between each pair of taxa (e.g., species or sequences) to create the phylogenetic tree.

The algorithm

Neighbor Joining 
Starting with a star tree (A), the Q matrix is calculated and used to choose a pair of nodes for joining, in this case f and g. These are joined to a newly created node, u, as shown in (B). The part of the tree shown as solid lines is now fixed and will not be changed in subsequent joining steps. The distances from node u to the nodes a-e are computed from equation (3). This process is then repeated, using a matrix of just the distances between the nodes, a,b,c,d,e, and u, and a Q matrix derived from it. In this case u and e are joined to the newly created v, as shown in (C). Two more iterations lead first to (D), and then to (E), at which point the algorithm is done, as the tree is fully resolved.

Neighbor joining takes a distance matrix, which specifies the distance between each pair of taxa, as input. The algorithm starts with a completely unresolved tree, whose topology corresponds to that of a star network, and iterates over the following steps, until the tree is completely resolved, and all branch lengths are known:

  1. Based on the current distance matrix, calculate a matrix Neighbor Joining  (defined below).
  2. Find the pair of distinct taxa i and j (i.e. with Neighbor Joining ) for which Neighbor Joining  is smallest. Make a new node that joins the taxa i and j, and connect the new node to the central node. For example, in part (B) of the figure at right, node u is created to join f and g.
  3. Calculate the distance from each of the taxa in the pair to this new node.
  4. Calculate the distance from each of the taxa outside of this pair to the new node.
  5. Start the algorithm again, replacing the pair of joined neighbors with the new node and using the distances calculated in the previous step.

The Q-matrix

Based on a distance matrix relating the Neighbor Joining  taxa, calculate the Neighbor Joining  x Neighbor Joining  matrix Neighbor Joining  as follows:

    Neighbor Joining 

    ()

where Neighbor Joining  is the distance between taxa Neighbor Joining  and Neighbor Joining .

Distance from the pair members to the new node

For each of the taxa in the pair being joined, use the following formula to calculate the distance to the new node:

    Neighbor Joining 

    ()

and:

    Neighbor Joining 

Taxa Neighbor Joining  and Neighbor Joining  are the paired taxa and Neighbor Joining  is the newly created node. The branches joining Neighbor Joining  and Neighbor Joining  and Neighbor Joining  and Neighbor Joining , and their lengths, Neighbor Joining  and Neighbor Joining  are part of the tree which is gradually being created; they neither affect nor are affected by later neighbor-joining steps.

Distance of the other taxa from the new node

For each taxon not considered in the previous step, we calculate the distance to the new node as follows:

    Neighbor Joining 

    ()

where Neighbor Joining  is the new node, Neighbor Joining  is the node which we want to calculate the distance to and Neighbor Joining  and Neighbor Joining  are the members of the pair just joined.

Complexity

Neighbor joining on a set of Neighbor Joining  taxa requires Neighbor Joining  iterations. At each step one has to build and search a Neighbor Joining  matrix. Initially the Neighbor Joining  matrix is size Neighbor Joining , then the next step it is Neighbor Joining , etc. Implementing this in a straightforward way leads to an algorithm with a time complexity of Neighbor Joining ; implementations exist which use heuristics to do much better than this on average.

Example

Neighbor Joining 
Neighbor joining with 5 taxa. In this case 2 neighbor joining steps give a tree with fully resolved topology. The branches of the resulting tree are labeled with their lengths.

Let us assume that we have five taxa Neighbor Joining  and the following distance matrix Neighbor Joining :

a b c d e
a 0 5 9 9 8
b 5 0 10 10 9
c 9 10 0 8 7
d 9 10 8 0 3
e 8 9 7 3 0

First step

First joining

We calculate the Neighbor Joining  values by equation (1). For example:

    Neighbor Joining 
    Neighbor Joining 

We obtain the following values for the Neighbor Joining  matrix (the diagonal elements of the matrix are not used and are omitted here):

a b c d e
a −50 −38 −34 −34
b −50 −38 −34 −34
c −38 −38 −40 −40
d −34 −34 −40 −48
e −34 −34 −40 −48

In the example above, Neighbor Joining . This is the smallest value of Neighbor Joining , so we join elements Neighbor Joining  and Neighbor Joining .

First branch length estimation

Let Neighbor Joining  denote the new node. By equation (2), above, the branches joining Neighbor Joining  and Neighbor Joining  to Neighbor Joining  then have lengths:

    Neighbor Joining 
    Neighbor Joining 

First distance matrix update

We then proceed to update the initial distance matrix Neighbor Joining  into a new distance matrix Neighbor Joining  (see below), reduced in size by one row and one column because of the joining of Neighbor Joining  with Neighbor Joining  into their neighbor Neighbor Joining . Using equation (3) above, we compute the distance from Neighbor Joining  to each of the other nodes besides Neighbor Joining  and Neighbor Joining . In this case, we obtain:

    Neighbor Joining 
    Neighbor Joining 
    Neighbor Joining 

The resulting distance matrix Neighbor Joining  is:

u c d e
u 0 7 7 6
c 7 0 8 7
d 7 8 0 3
e 6 7 3 0

Bold values in Neighbor Joining  correspond to the newly calculated distances, whereas italicized values are not affected by the matrix update as they correspond to distances between elements not involved in the first joining of taxa.

Second step

Second joining

The corresponding Neighbor Joining  matrix is:

u c d e
u −28 −24 −24
c −28 −24 −24
d −24 −24 −28
e −24 −24 −28

We may choose either to join Neighbor Joining  and Neighbor Joining , or to join Neighbor Joining  and Neighbor Joining ; both pairs have the minimal Neighbor Joining  value of Neighbor Joining , and either choice leads to the same result. For concreteness, let us join Neighbor Joining  and Neighbor Joining  and call the new node Neighbor Joining .

Second branch length estimation

The lengths of the branches joining Neighbor Joining  and Neighbor Joining  to Neighbor Joining  can be calculated:

    Neighbor Joining 
    Neighbor Joining 

The joining of the elements and the branch length calculation help drawing the neighbor joining tree as shown in the figure.

Second distance matrix update

The updated distance matrix Neighbor Joining  for the remaining 3 nodes, Neighbor Joining , Neighbor Joining , and Neighbor Joining , is now computed:

    Neighbor Joining 
    Neighbor Joining 
v d e
v 0 4 3
d 4 0 3
e 3 3 0

Final step

The tree topology is fully resolved at this point. However, for clarity, we can calculate the Neighbor Joining  matrix. For example:

    Neighbor Joining 
v d e
v −10 −10
d −10 −10
e −10 −10

For concreteness, let us join Neighbor Joining  and Neighbor Joining  and call the last node Neighbor Joining . The lengths of the three remaining branches can be calculated:

    Neighbor Joining 
    Neighbor Joining 
    Neighbor Joining 

The neighbor joining tree is now complete, as shown in the figure.

Conclusion: additive distances

This example represents an idealized case: note that if we move from any taxon to any other along the branches of the tree, and sum the lengths of the branches traversed, the result is equal to the distance between those taxa in the input distance matrix. For example, going from Neighbor Joining  to Neighbor Joining  we have Neighbor Joining . A distance matrix whose distances agree in this way with some tree is said to be 'additive', a property which is rare in practice. Nonetheless it is important to note that, given an additive distance matrix as input, neighbor joining is guaranteed to find the tree whose distances between taxa agree with it.

Neighbor joining as minimum evolution

Neighbor joining may be viewed as a greedy heuristic for the balanced minimum evolution (BME) criterion. For each topology, BME defines the tree length (sum of branch lengths) to be a particular weighted sum of the distances in the distance matrix, with the weights depending on the topology. The BME optimal topology is the one which minimizes this tree length. NJ at each step greedily joins that pair of taxa which will give the greatest decrease in the estimated tree length. This procedure does not guarantee to find the optimum for the BME criterion, although it often does and is usually quite close.

Advantages and disadvantages

The main virtue of NJ is that it is fast: 466  as compared to least squares, maximum parsimony and maximum likelihood methods. This makes it practical for analyzing large data sets (hundreds or thousands of taxa) and for bootstrapping, for which purposes other means of analysis (e.g. maximum parsimony, maximum likelihood) may be computationally prohibitive.

Neighbor joining has the property that if the input distance matrix is correct, then the output tree will be correct. Furthermore, the correctness of the output tree topology is guaranteed as long as the distance matrix is 'nearly additive', specifically if each entry in the distance matrix differs from the true distance by less than half of the shortest branch length in the tree. In practice the distance matrix rarely satisfies this condition, but neighbor joining often constructs the correct tree topology anyway. The correctness of neighbor joining for nearly additive distance matrices implies that it is statistically consistent under many models of evolution; given data of sufficient length, neighbor joining will reconstruct the true tree with high probability. Compared with UPGMA and WPGMA, neighbor joining has the advantage that it does not assume all lineages evolve at the same rate (molecular clock hypothesis).

Nevertheless, neighbor joining has been largely superseded by phylogenetic methods that do not rely on distance measures and offer superior accuracy under most conditions.[citation needed] Neighbor joining has the undesirable feature that it often assigns negative lengths to some of the branches.

Implementations and variants

There are many programs available implementing neighbor joining. Among implementations of canonical NJ (i.e. using the classical NJ optimisation criteria, therefore giving the same results), RapidNJ (started 2003, major update in 2011, still updated in 2023) and NINJA (started 2009, last update 2013) are considered state-of-the-art. They have typical run times proportional to approximately the square of the number of taxa.

Variants that deviate from canonical include:

  • BIONJ (1997) and Weighbor (2000), improving on the accuracy by making use of the fact that the shorter distances in the distance matrix are generally better known than the longer distances. The two methods have been extended to run on incomplete distance matrices.
  • "Fast NJ" remembers the best node and is O(n^2) always; "relax NJ" performs a hill-climbing search and retains the worst-case complexity of O(n^3). Rapid NJ is faster than plain relaxed NJ.
  • FastME is an implementation of the closely related balanced minimum evolution (BME) method (see § Neighbor joining as minimum evolution). It is about as fast as and more accurate than NJ. It starts with a rough tree then improves it using a set of topological moves such as Nearest Neighbor Interchanges (NNI). FastTree is a related method. It works on sequence "profiles" instead of a matrix. It starts with an approximately NJ tree, rearranges it into BME, then rearranges it into approximate maximum-likelihood.

See also

References

Other sources

Tags:

Neighbor Joining The algorithmNeighbor Joining ExampleNeighbor Joining Neighbor joining as minimum evolutionNeighbor Joining Advantages and disadvantagesNeighbor Joining Implementations and variantsNeighbor JoiningBioinformaticsCluster analysisDNAMasatoshi NeiPhylogenetic treesPrimary structureProteinTaxa

🔥 Trending searches on Wiki English:

Road House (1989 film)WordleSaltburn (film)Solo SikoaGeneration ZThiago SilvaRiley KeoughSteve JobsDuckDuckGoFrancis Omondi OgollaMount TakaheAavesham (2024 film)Timothée ChalametSydney SweeneyJ. Robert OppenheimerJohn F. KennedyUEFA Europa LeagueAshanti (singer)The Sympathizer (miniseries)GermanyGöran KroppVarshangalkku Shesham2024 Indian general electionShaquille O'NealMegan FoxUEFA Champions LeagueAviciiEvermoreDrake BellWaco siegeAmar Singh ChamkilaRuPaul's Drag Race (season 16)Timothy McVeighMurder trial of O. J. Simpson2024 Indian general election in Uttar PradeshNazi GermanyShaitaan (2024 film)2024 Bondi Junction stabbingsOrlando BloomRyan GoslingThe Gentlemen (2024 TV series)SheepshankKalanithi MaranRanam Aram ThavarelSoviet UnionSteve McQueenSexual intercourseRon GoldmanShōgun (novel)InstagramWoody Woodpecker Goes to CampRichard Armitage (actor)Wonka (film)Dwayne JohnsonAMohammed Hanif OmarThe Talented Mr. Ripley (film)Johnny DeppList of Young Sheldon episodesChallengers (film)Ken MilesCoral CastleAmerican Civil WarJay-ZFrancisco VarelaSiren (2024 film)James Holmes (mass murderer)Animal (2023 Indian film)Pirates of the Caribbean (film series)Sasha LussList of United States cities by populationWar for the Planet of the ApesList of prime ministers of IndiaJoker (2019 film)Cassowary2024 Indian general election in MaharashtraKim Ji-won (actress)Zendaya🡆 More