Felsenstein's tree-pruning algorithm

{{Short description|Technique in statistical genetics}}

In statistical genetics, Felsenstein's tree-pruning algorithm (or Felsenstein's tree-peeling algorithm), attributed to Joseph Felsenstein, is an algorithm for efficiently computing the likelihood of an evolutionary tree from nucleic acid sequence data. {{Cite journal | last1 = Felsenstein | first1 = J.| author-link1 =Joseph Felsenstein| title = Maximum Likelihood and Minimum-Steps Methods for Estimating Evolutionary Trees from Data on Discrete Characters | doi = 10.1093/sysbio/22.3.240 | journal = Systematic Biology | volume = 22 | issue = 3 | pages = 240–249 | year = 1973 }}{{Cite journal | last1 = Felsenstein | first1 = J.| author-link1 = Joseph Felsenstein| title = Evolutionary trees from DNA sequences: A maximum likelihood approach | doi = 10.1007/BF01734359 | journal = Journal of Molecular Evolution | volume = 17 | issue = 6 | pages = 368–376 | year = 1981 | pmid = 7288891| bibcode = 1981JMolE..17..368F| s2cid = 8024924}}

The algorithm is often used as a subroutine in a search for a maximum likelihood estimate for an evolutionary tree. Further, it can be used in a hypothesis test for whether evolutionary rates are constant (by using likelihood ratio tests). It can also be used to provide error estimates for the parameters describing an evolutionary tree.

Details

File:Tree_exemple.png

The likelihood of a tree T is, by definition, the probability of observing certain data D (D being a nucleotide sequence alignment for example i.e. a succession of n DNA site s ) given the tree. It is often written : P(D|T).

Here is an example of an evolutionary tree on arbitrary sequence data D:

This is a key value and is often quite complicated to compute. To ease the computations, Felsenstein and his colleagues used several assumptions that are still widely used today. The main assumption is that mutations between DNA sites are independent of each other. This permits to compute the likelihood as a simple product of probabilities. Now you can divide the data D between several D_s for each nucleotide site s inside of D. The global likelihood of the tree will be the product of the likelihoods of each site:

File:Tree_partial_exemple.png

P(D|T) = \prod_{s=1}^{n} {P(D_s|T)}

If I reuse the example above, D_1 tree would be:

The second assumption concerns the models of DNA sequence evolution. The computation of the likelihood needs the nucleotide frequencies as well as the transition probabilities (when a mutation occurs, probability of going from a nucleotide to another). The simplest model is the Jukes-Cantor model, assuming equal nucleotide frequencies \left(\pi_A = \pi_G = \pi_C = \pi_T = {1\over4}\right) and equal transition probabilities from X to Y (p_{A \rightarrow T} = p_{A \rightarrow C} = p_{A \rightarrow G} = \frac{1}{4} (1 - e^{-\mu l}) and p_{A \rightarrow A} = e^{-\mu l} + \frac{1}{4} (1 - e^{-\mu l}) ) and idem for the other bases. Here \mu is the global mutation rate of the model.

Felsenstein proposed to decomposed computations even more by using "partial likelihoods" in the computation of

P( D_s | T)

. Here is how it works.

Assume we are on a node

k

on the tree

T

.

k

has two daughter nodes

i

and

j

and, for each DNA base X = \{ A, T, C, G \} present on

k

, we can define a partial likelihood w_k (X) such as:

w_k (X) = ( \sum_Y p_{X \rightarrow Y} \centerdot w_i (Y)) \centerdot ( \sum_Z p_{X \rightarrow Z} \centerdot w_j (Z))

where Y and Z are also DNA bases. p_{ X\rightarrow Y} is the transition probability from nucleotide X to nucleotide Y (idem for p_{X \rightarrow Z} ). w_i(Y) is the partial likelihood of the daughter node

i

, evaluated on nucleotide Y (idem for

w_j(Z)

).

Using this formula, one has to start from the tips of the tree T, then move towards the root and compute the partial likelihoods of each necessary node on the way (4 partial likelihoods per node). Having finished at the root of the tree, the likelihood of the tree (for this particular site) is then the sum of the partial likelihoods of the root times the appropriated nucleotide frequency.

P(D_s|T) = \sum_X p_X \centerdot w_r (X)

After doing so for every site s, one can finally obtain the likelihood of the global evolutionary tree by multiplying each "sublikelihood".

Algorithm

Simple Example

References

{{reflist}}

{{genetics-stub}}

{{statistics-stub}}

Category:Statistical genetics