Quartet distance

From testwiki
Revision as of 17:46, 5 May 2021 by imported>OAbot (Open access bot: doi added to citation with #oabot.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The quartet distance[1] is a way of measuring the distance between two phylogenetic trees. It is defined as the number of subsets of four leaves that are not related by the same topology in both trees.

Computing the quartet distance

The most straightforward computation of the quartet distance would require O(N4) time, where N is the number of leaves in the trees.

For binary trees, better algorithms have been found to compute the distance in

  • O(N2) time[2]
  • O(Nlog2N) time[3]

and

  • O(NlogN) time[4]

Gerth Stølting Brodal et al. found an algorithm that takes O(DNlogN) time to compute the quartet distance between two multifurcating trees when D is the maximum degree of the trees,[5] which is accessible in C, perl, and the R package Quartet.

References