UPGMA
{{short description|Agglomerative hierarchical clustering method}}
UPGMA (unweighted pair group method with arithmetic mean) is a simple agglomerative (bottom-up) hierarchical clustering method. It also has a weighted variant, WPGMA, and they are generally attributed to Sokal and Michener.{{cite journal | vauthors = Sokal, Michener |title=A statistical method for evaluating systematic relationships |url=https://archive.org/details/cbarchive_33927_astatisticalmethodforevaluatin1902/page/n2 |journal=University of Kansas Science Bulletin |volume=38 |pages=1409–1438 |year=1958}}
Note that the unweighted term indicates that all distances contribute equally to each average that is computed and does not refer to the math by which it is achieved. Thus the simple averaging in WPGMA produces a weighted result and the proportional averaging in UPGMA produces an unweighted result (see the working example).{{cite web | first1 = Santi | last1 = Garcia | first2 = Pere | last2 = Puigbò | name-list-style = vanc | url = http://genomes.urv.cat/UPGMA/DendroUPGMA_Tut.pdf | title = DendroUPGMA: A dendrogram construction utility | page = 4 }}
Algorithm
The UPGMA algorithm constructs a rooted tree (dendrogram) that reflects the structure present in a pairwise similarity matrix (or a dissimilarity matrix).
At each step, the nearest two clusters are combined into a higher-level cluster. The distance between any two clusters and , each of size (i.e., cardinality) and , is taken to be the average of all distances between pairs of objects in and in , that is, the mean distance between elements of each cluster:
::
In other words, at each clustering step, the updated distance between the joined clusters and a new cluster is given by the proportional averaging of the and distances:
d_{(\mathcal{A} \cup \mathcal{B}),X} = \frac
\mathcal{A}| \cdot d_{\mathcal{A},X} + |\mathcal{B}| \cdot d_{\mathcal{B},X}}{|\mathcal{A}| + |\mathcal{B} |
The UPGMA algorithm produces rooted dendrograms and requires a constant-rate assumption - that is, it assumes an ultrametric tree in which the distances from the root to every branch tip are equal. When the tips are molecular data (i.e., DNA, RNA and protein) sampled at the same time, the ultrametricity assumption becomes equivalent to assuming a molecular clock.
Working example
This working example is based on a JC69 genetic distance matrix computed from the 5S ribosomal RNA sequence alignment of five bacteria: Bacillus subtilis (), Bacillus stearothermophilus (), Lactobacillus viridescens (), Acholeplasma modicum (), and Micrococcus luteus ().{{cite journal | vauthors = Erdmann VA, Wolters J | title = Collection of published 5S, 5.8S and 4.5S ribosomal RNA sequences | journal = Nucleic Acids Research | volume = 14 Suppl | issue = Suppl | pages = r1–59 | date = 1986 | pmid = 2422630 | pmc = 341310 | doi=10.1093/nar/14.suppl.r1}}{{cite book | vauthors = Olsen GJ | chapter = Phylogenetic analysis using ribosomal RNA | title = Ribosomes | series = Methods in Enzymology | volume = 164 | pages = 793–812 | date = 1988 | pmid = 3241556 | doi = 10.1016/s0076-6879(88)64084-5 | isbn = 978-0-12-182065-7 }}
=First step=
- First clustering
Let us assume that we have five elements and the following matrix of pairwise distances between them :
{{anchor|Distance_Matrix1}}
class="wikitable" style="text-align: center" |
style="width: 50px;" |
! style="width: 50px;" | a ! style="width: 50px;" | b ! style="width: 50px;" | c ! style="width: 50px;" | d ! style="width: 50px;" | e |
---|
a
| 0 || style=background:#ffffcc; | 17 || 21 || 31 || 23 |
b
| style=background:#ffffcc; | 17 || 0 || 30 || 34 || 21 |
c
| 21 || 30 || 0 || 28 || 39 |
d
| 31 || 34 || 28 || 0 || 43 |
e
| 23 || 21 || 39 || 43 || 0 |
In this example, is the smallest value of , so we join elements and .
- First branch length estimation
Let denote the node to which and are now connected. Setting ensures that elements and are equidistant from . This corresponds to the expectation of the ultrametricity hypothesis.
The branches joining and to then have lengths (see the final dendrogram)
- First distance matrix update
We then proceed to update the initial distance matrix into a new distance matrix (see below), reduced in size by one row and one column because of the clustering of with .
Bold values in correspond to the new distances, calculated by averaging distances between each element of the first cluster and each of the remaining elements:
Italicized values in are not affected by the matrix update as they correspond to distances between elements not involved in the first cluster.
=Second step=
- Second clustering
We now reiterate the three previous steps, starting from the new distance matrix
class="wikitable" style="text-align: center" |
style="width: 50px;" |
! style="width: 50px;" | (a,b) ! style="width: 50px;" | c ! style="width: 50px;" | d ! style="width: 50px;" | e |
---|
(a,b)
| 0 || 25.5 || 32.5 || style=background:#ffffcc; | 22 |
c
| 25.5 || 0 || 28 || 39 |
d
| 32.5 || 28 || 0 || 43 |
e
| style=background:#ffffcc; | 22 || 39 || 43 || 0 |
Here, is the smallest value of , so we join cluster and element .
- Second branch length estimation
Let denote the node to which and are now connected. Because of the ultrametricity constraint, the branches joining or to , and to are equal and have the following length:
We deduce the missing branch length:
- Second distance matrix update {{anchor|Second_distance_matrix_update}}
We then proceed to update into a new distance matrix (see below), reduced in size by one row and one column because of the clustering of with . Bold values in correspond to the new distances, calculated by proportional averaging:
Thanks to this proportional average, the calculation of this new distance accounts for the larger size of the cluster (two elements) with respect to (one element). Similarly:
Proportional averaging therefore gives equal weight to the initial distances of matrix . This is the reason why the method is unweighted, not with respect to the mathematical procedure but with respect to the initial distances.
=Third step=
- Third clustering
We again reiterate the three previous steps, starting from the updated distance matrix .
class="wikitable" style="text-align: center" |
style="width: 50px;" |
! style="width: 50px;" | ((a,b),e) ! style="width: 50px;" | c ! style="width: 50px;" | d |
---|
((a,b),e)
| 0 || 30 || 36 |
c
| 30 || 0 || style=background:#ffffcc; | 28 |
d
| 36 || style=background:#ffffcc; | 28 || 0 |
Here, is the smallest value of , so we join elements and .
- Third branch length estimation
Let denote the node to which and are now connected.
The branches joining and to then have lengths (see the final dendrogram)
- Third distance matrix update
There is a single entry to update, keeping in mind that the two elements and each have a contribution of in the average computation:
=Final step=
The final matrix is:
class="wikitable" style="text-align: center" |
style="width: 50px;" |
! style="width: 50px;" | ((a,b),e) ! style="width: 50px;" | (c,d) |
---|
((a,b),e)
| 0 || style=background:#ffffcc; | 33 |
(c,d)
| style=background:#ffffcc; | 33 || 0 |
So we join clusters and .
Let denote the (root) node to which and are now connected.
The branches joining and to then have lengths:
We deduce the two remaining branch lengths:
=The UPGMA dendrogram=
{{anchor|Dendrogram1}}
File:UPGMA Dendrogram 5S data.svg
The dendrogram is now complete.{{cite book|title=Molecular Systematics, 2nd edition|last1=Swofford|first1=David L.|last2=Olsen|first2=Gary J.|last3=Waddell|first3=Peter J.|last4=Hillis|first4=David M. | name-list-style = vanc |year=1996|isbn=9780878932825|editor-last1=Hillis|editor-first1=David M.|editor-last2=Moritz|editor-first2=Craig|editor-last3=Mable|editor-first3=Barbara K.|publisher=Sinauer|location=Sunderland, MA|pages=407–514|chapter=Phylogenetic inference}} It is ultrametric because all tips ( to ) are equidistant from :
The dendrogram is therefore rooted by , its deepest node.
= Comparison with other linkages =
Alternative linkage schemes include single linkage clustering, complete linkage clustering, and WPGMA average linkage clustering. Implementing a different linkage is simply a matter of using a different formula to calculate inter-cluster distances during the distance matrix update steps of the above algorithm. Complete linkage clustering avoids a drawback of the alternative single linkage clustering method - the so-called chaining phenomenon, where clusters formed via single linkage clustering may be forced together due to single elements being close to each other, even though many of the elements in each cluster may be very distant to each other. Complete linkage tends to find compact clusters of approximately equal diameters.{{cite book |last1= Everitt |first1=B. S. |last2=Landau |first2=S. |last3=Leese |first3=M. |date=2001 |title=Cluster Analysis. 4th Edition |location=London |publisher=Arnold |pages=62–64 }}
class="wikitable"
|+ Comparison of dendrograms obtained under different clustering methods from the same distance matrix. |
Single-linkage clustering
|Average linkage clustering: WPGMA |Average linkage clustering: UPGMA. |
Uses
- In ecology, it is one of the most popular methods for the classification of sampling units (such as vegetation plots) on the basis of their pairwise similarities in relevant descriptor variables (such as species composition).{{cite book | vauthors = Legendre P, Legendre L | date = 1998 | title = Numerical Ecology | edition = Second English | series = Developments in Environmental Modelling | volume = 20 | publisher = Elsevier | location = Amsterdam }} For example, it has been used to understand the trophic interaction between marine bacteria and protists.{{cite journal | vauthors = Vázquez-Domínguez E, Casamayor EO, Català P, Lebaron P | title = Different marine heterotrophic nanoflagellates affect differentially the composition of enriched bacterial communities | journal = Microbial Ecology | volume = 49 | issue = 3 | pages = 474–85 | date = April 2005 | pmid = 16003474 | doi = 10.1007/s00248-004-0035-5 | jstor = 25153200 | bibcode = 2005MicEc..49..474V | s2cid = 22300174 }}
- In bioinformatics, UPGMA is used for the creation of phenetic trees (phenograms). UPGMA was initially designed for use in protein electrophoresis studies, but is currently most often used to produce guide trees for more sophisticated algorithms. This algorithm is for example used in sequence alignment procedures, as it proposes one order in which the sequences will be aligned. Indeed, the guide tree aims at grouping the most similar sequences, regardless of their evolutionary rate or phylogenetic affinities, and that is exactly the goal of UPGMA{{cite journal | vauthors = Wheeler TJ, Kececioglu JD | title = Multiple alignment by aligning alignments | journal = Bioinformatics | volume = 23 | issue = 13 | pages = i559–68 | date = July 2007 | pmid = 17646343 | doi = 10.1093/bioinformatics/btm226 | doi-access = free }}
- In phylogenetics, UPGMA assumes a constant rate of evolution (molecular clock hypothesis) and that all sequences were sampled at the same time, and is not a well-regarded method for inferring relationships unless this assumption has been tested and justified for the data set being used. Notice that even under a 'strict clock', sequences sampled at different times should not lead to an ultrametric tree.
Time complexity
A trivial implementation of the algorithm to construct the UPGMA tree has time complexity, and using a heap for each cluster to keep its distances from other cluster reduces its time to . Fionn Murtagh presented an time and space algorithm.{{cite journal |vauthors = Murtagh F |title=Complexities of Hierarchic Clustering Algorithms: the state of the art |journal=Computational Statistics Quarterly |volume=1 |pages=101–113 |year=1984}}
See also
References
{{Reflist}}
External links
- [https://github.com/SergioFierens/ai4r/blob/master/lib/ai4r/clusterers/average_linkage.rb UPGMA clustering algorithm implementation in Ruby (AI4R)]
- [https://books.google.com/books?id=KBoHuoNRO5MC&dq=UPGMA+clustering&pg=PA319 Example calculation of UPGMA using a similarity matrix]
- [http://www.slimsuite.unsw.edu.au/teaching/upgma/ Example calculation of UPGMA using a distance matrix]
{{Phylogenetics}}
Category:Bioinformatics algorithms
Category:Computational phylogenetics