Test for between trees
1
0
Entering edit mode
9.6 years ago
sam ▴ 130

Hello. Does anyone know of a program or a graph that could compare trees with one another to test whether one tree belongs to the other tree?

sequence algorithms graph • 1.7k views
ADD COMMENT
0
Entering edit mode

What's you representation of the trees? In which file format do you store them?

ADD REPLY
1
Entering edit mode
9.6 years ago
Brice Sarver ★ 3.8k

You need to be a bit more specific. Are you interested in seeing if a given tree is a subtree of another? I'm assuming that this is what you want.

The R library ape will return all subtrees for a given tree (http://svitsrv25.epfl.ch/R-doc/library/ape/html/subtrees.html). I imagine an algorithm structured in the following way:

  1. Read in a tree and estimate all subtrees of that tree. Store the subtrees as an object.
  2. Calculate a distance metric from your tree to each one of the subtrees. The phangorn library (and others) will calculate the standard bipartition distance (Robinson-Foulds) between pairs of trees; if there is a distance of zero from your tree to one of the subtrees, you know that your tree is identical in branching structure to that subtree.

This can be easily accomplished in R. Hope this helps.

ADD COMMENT

Login before adding your answer.

Traffic: 2815 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6