Presentation is loading. Please wait.

Presentation is loading. Please wait.

Building phylogenetic trees. Contents Phylogeny Phylogenetic trees How to make a phylogenetic tree from pairwise distances  UPGMA method (+ an example)

Similar presentations


Presentation on theme: "Building phylogenetic trees. Contents Phylogeny Phylogenetic trees How to make a phylogenetic tree from pairwise distances  UPGMA method (+ an example)"— Presentation transcript:

1 Building phylogenetic trees

2 Contents Phylogeny Phylogenetic trees How to make a phylogenetic tree from pairwise distances  UPGMA method (+ an example)  Neighbor-Joining method (+ an example) Comparison of methods Conclusion

3 Phylogeny Phylogeny is the evolution of related species/genes Phylogenetic tree: diagram showing evolutionary lineages of species/genes The history of genes or species may be very different Genes can be homologous or analogous, but still remind each other Homologous sequences can be devided into two parts  Orthologous sequences diverged by specification from a common ancestor  Paralogous sequences evolved by gene dublication within species Analogous sequences may appear and function very similarly, but they do not have a common ancestor WHEN WE WANT TO EXPLORE EVOLUTIONARY RELATIONSHIPS, WE NEED TO HANDLE ORTHOLOGOUS SEQUENCES Genes Homologous OrthologousParalogous Analogous

4 Phylogenetic trees WHY construct a phylogenetic tree?  to understand lineage of various species  to understand how various functions evolved  to inform multiple alignments Trees can be rooted (a common ancestor in known) or unrooted Leaves are the terminal nodes that correspond to the observed sequences of genes or species (A, B, C, D) Internal nodes are hypothetical ancestral nodes All trees will be assumed to be binary, meaning that an edge that branches splits into two daughter edges Each edge has a certain amount of evolutionary divergence associated to it, defined by some measure of distance between sequences, or from a model of substitution of residues over the course of evolution

5 Phylogenetic trees Different ways to represent a phylogenetic tree (illustrated by Treeview)

6

7

8

9

10 Different algorithms used to infer phylogeny from sequence data 1. Distance methods 2. Parsimony 3. Likelihood 4. Probabilistic methods 5. Phylogenetic invariants

11 Route from the molecular sequences to the phylogenetic tree Distance methods: Select a set of related (orthologous) nucleotide or amino acid sequences Perform multiple sequence alignment (Clustal series widely used) Calculate pairwise distances of the sequence using chosen evolution model of substitution (Distances between sequences describe the evolution: the smaller distances are the closer they are related) Select the most suitable algorithm to infer phylogeny View the tree with a certain program (Treeview, NJPlot,..)

12 Hamming Distance

13 Making a tree from pairwise distances Distances d ij between each pair of sequences i and j are calculated in the given dataset Different ways defining distances  For nucleotide sequences: Jukes-Cantor, Kimura-2-parameter K2P, HKY (Hasegawa-Kishino-Yano), F84, Tamura-Nei, General time-reversible model, General 12-parameter model  For amino acid sequences: PAM-matrices, BLOSUM-matrices ABCD A 0324446 B 3202943 C 4429030 D 4643300

14 Distance matrix methods UPGMA  Algorithm introduced by Sokal and Michener 1958 Neighbor-Joining  Algorithm introduced by Saitou and Nei 1987  Modified by Studier and Keppler 1988

15 Clustering method: UPGMA UPGMA = Unweighted pair group method using arithmetic averages Simple method It works by clustering the sequences, at each stage connecting two clusters and finally creating a new node on a tree Method assumes equal rate of evolutionary change along branches  Molecular clock assumption

16 UPGMA UPGMA produces a rooted tree Branch lengths satisfy a molecular clock  The divergence of sequences is assumed to occur at the same constant rate at all points in the tree Trees that are clocklike are rooted and the total branch length from the root up to any leaf is equal Trees are often referred to be ultrametric A distance measures are ultrametric if either all three distances are equal d ij = d ik = d jk or two of them are equal and one is smaller: d jk < d ij = d ik  UPGMA is guaranteed to build the correct tree if distances are ultrametric Method can be used for reconstructing phylogenies if evolutionary rates are assumed to be same in all lineages  criticism in the phylogeny literature  Suitable for the species closely related Running time O(n 2 ) A C B D

17 Algorithm: UPGMA Initialisation: Assign each sequence i in dataset to its own cluster Define one leaf of T for each sequence, and place at height zero Iteration: Find the two clusters i and j for which d ij is the smallest (pick randomly if several equal distances) Define a new cluster ij by C ij = C i U C j. Cluster ij has n ij = n i + n j members ( initially ni = 1 ) Connect i and j on the tree to a new node v The branch lengths from new node to i and j are placed at height

18 Algorithm: UPGMA (cont.) Iteration (cont.) Compute the distances between the new cluster and the remaining clusters by using Add ij to the current clusters and remove i and j Termination: When only two clusters i and j remain, place the root at height

19 An example UPGMA (1) Distance matrix (arbitrary) for four items (sequences) A, B, C and D Actually distances are not ultrametric, because three distances are not equal d ij ≠ d ik ≠ d jk or two of them are not equal and one is smaller: d jk < d ij ≠ d ik ABCD A08712 B80914 C79011 D1214110 Step 1. Find the smallest distance, d ij, between two clusters  A and C, where d ij is 7

20 An example UPGMA (2) Step 2. Define new cluster ij, which has n ij = n i + n j members (initially n i = 1) New cluster  A and C n AC = n A + n C =2 Step 3. Connect A and C on the tree to a new node v1 Step 4. The branch lengths from new node v1 to A and C A C 3,5 ABCD A08712 B0914 C011 D0

21 Step 5. Compute the distances between the new cluster AC and the remaining clusters (B and D): Step 6. Delete the columns and rows of the distance matrix that correspond to clusters A and C, and add a column and a row for cluster AC An example UPGMA (3) ACBD 08,511,5 B014 D0  New distance matrix

22 An example UPGMA (4) ACBD 08,511,5 B014 D0 2nd iteration process Step 1. Find the two sequences i and j for which d ij is the smallest (randomly if several equal distances)  AC-B Step 2. Define new cluster (ij), which has nij = ni + nj members ( initially ni = 1 ) New cluster  AC and B  n ACB = n AC + n B = 2 + 1 = 3 Step 3. Connect AC and B on the tree to a new node v2 Step 4. The branch lengths from new node v2 to AC and B  A C 3,5 B 4,25

23 An example UPGMA (5) Step 5. Compute the distances between the new cluster and the remaining cluster (D) Step 6. Delete the columns and rows of the distance matrix that correspond to clusters AC and B, and add a column and a row for cluster ACB ACBD 012,33 D0  New distance matrix

24 An example UPGMA (6) Termination: Only two clusters (ACB and D) remaining Place the root height ACBD 012,33 D0 A C 3,5 B 4,25 6,17 D Original distance matrix and final phylogenetic tree(including the branch lengths) 1,92 ABCD A08712 B0914 C011 D0 0,75

25 Neighbor-Joining (N-J) Another algorithm that works by clustering the sequences Does not assume molecular clock N-J trees are unrooted N-J assumes additivity Def. Edge lengths are said to be additive if the distance between any pair of leaves is the sum of lengths of the edges on the path connecting them Method uses an approximate algorithm, where the tree is built by finding a pair of neighboring leaves i and j that minimize the length of the tree. Finally neighboring leaves are joined. Running time O(n 2 ) B A C D

26 Initialisation: Define T to be the set of leaf nodes, one for each given sequence Iteration: Compute for each sequence, where n is the number of sequences in the distance matrix Pick a pair i and j (for which d ij – u i – u j is the smallest (pick randomly if several equal) Join items i and j with a new node v Compute the branch lengths from a new node v to items i and j Compute the distances between new node v and remaining items Remove i and j from the distance matrix and replace them by new node v Termination: When only two items i and j remain, add the remaining edge between i and j, with length d ij Algorithm: Neighbor-Joining

27

28 Step 1. Compute for each row in distance matrix Step 2. Compute (the lower-diagonal matrix) and choose the smallest (most negative) An example N-J (1) ABCDStep 1 - u i A 08712=(8+7+12)/(4-2) = 13,5 B 80914=(8+9+14)/(4-2)=15,5 C 79011=(7+9+11)/(4-2)=13,5 D 1212 14110=(12+14+11)/(4-2)=18,5 ABCD A 08712 B 8-(13,5+15,5)=-210914 C 7-(13,5+13,5)=-209-(15,5+13,5)= -20011 D 12-(13,5+18,5)=-2014-(15,5+18,5)=-2011-(13,5+18,5)=-210

29 An example N-J (2) Step 3. Join A and B together with a new node v 1. Compute the edge lengths, from A to node v and from B to node v 1 Step 4. Compute distances between the new node v 1 and remaining items (C and D) v1v1 B A 5 3

30

31 An example N-J (3) Step 5. Delete A and B from the distance matrix and replace them by new item AB Step 6. Continue from step 1, because more than two items remain Step 1. Compute for each row in distance matrix Step 2 Compute and choose the smallest (the lower-diagonal matrix) ABCD Step 1 = u i AB 049(4+9)/1=13 C 4011(4+11)/1=15 D 9110(9+11)/1=20 New reduced distance matrix ABCD 049 C 4-(13+15)=-24011 D 9-(13+20)=-2411-(15+20)=-240

32 An example N-J (4) Step 3 Join v 1 and C together with a new node v 2. Compute the edge lengths, from v 1 to node v 2 and from C to node v 2 Step 4 Compute distances between the new node v2 and remaining items (D) ABCD Step 1 = u i AB 049(4+9)/1=13 C 4011(4+11)/1=15 D 9110(9+11)/1=20 v1 B A 5 3 v2 1 3 C

33 An example N-J (5) Step 5 Delete AB and C from the distance matrix and replace them by ABC Step 6 Only two nodes remaining  connect them ABCD 08 D 0 B A 5 3 C D 8 ABCD A08712 B0914 C011 D0 1 3 Original distance matrix and final phylogenetic tree (including the edge lengths)

34 Comparison UPGMA  The total branch length from the root up to any leaf is equal  Produces a rooted tree, where the root is hypothesized ancestor of the sequences in the tree  Suitable for closely related sequences  Can be used to infer phylogenies if one can assume that evolutionary rates are the same in all lineages Neighbor-joining  Unrooted tree, where the direction of evolution is unknown  Suitable for datasets with largely varying rates of evolution  Suitable for large datasets B A 5 3 C D 8 1 3 A C 3,5 B 4,25 6,17 D

35 Conclusion UPGMA method constructs a rooted phylogenetic tree correctly if there is a molecular clock with a constant rate of mutation UPGMA method is rarely used, because molecular clock assumption is not generally true: selection pressures vary across time periods, genes within organisms, organisms, regions within gene N-J method produces an unrooted tree without molecular clock hypothesis N-J method is one of the most popular and widely used by molecular evolutionist Distance methods are strongly dependent on the model of evolution used Sequence information is reduced when transforming sequence data into distances Distance methods are computationaly fast

36 Reference Durbin, R., Eddy, S., Krogh, A., Mithchison G. 2003 Biological sequence analysis – Probabilistic models of proteins and nucleic acid. Campridge University Press. Li, W. 1997. Molecular Evolution. Sinauer Associates, Sunderland, MA. p. 108 Felsenstein, J. 2003. Inferring Phylogenies. Sinauer Associates, Sunderland, MA. p.147-170

37 Examples of phylogeny programs Multiple sequence alignment Clustal series (W, V) (free, http://www-igbmc.u- strasbg.fr/BioInfo/ClustalX/Top.html ) Phylogeny packages PAUP (http://paup.csit.fsu.edu/ ) Phylip (free, http://evolution.gs.washington.edu) MEGA (free, http://www.megasoftware.net) Viewing/plotting phylogenetic trees Treeview (free, http://taxonomy.zoology.gla.ac.uk/rod/treeview.html) NJPlot (free, http://pbil.univ-lyon1.fr/software/njplot.html)

38 Further reading N-J: Saitou, N. and M. Nei.1987. The neighbor-joining method: a new method for reconstructing phylogenetic trees. Mol Biol Evol 4(4): 406-25. N-J: Studier, J. A., K. J. Keppler, et al. 1988. A note on the neighbor- joining algorithm of Saitou and Nei The neighbor-joining method: a new method for reconstructing phylogenetic trees. Mol Biol Evol 5(6): 729-31. UPGMA: Michener, C. D., and R. R. Sokal. 1957. A quantative approach to a problem in classification. Evolution 11: 130-162. ClustalW: Thompson, J. D., T. J. Gibson, et al. 1997. The CLUSTAL_X windows interface: flexible strategies for multiple sequence alignment aided by quality analysis tools. Nucleic Acids Res 25(24): 4876-82.


Download ppt "Building phylogenetic trees. Contents Phylogeny Phylogenetic trees How to make a phylogenetic tree from pairwise distances  UPGMA method (+ an example)"

Similar presentations


Ads by Google