Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Computes the symmetric difference, also known as the Robinson-Foulds (RF) distance, between two trees. The trees do not need to be rooted. The trees must be specified in the Rich Newick Format. The tool reads in two trees. It outputs the number of False Negative edges, the number of False Positive edges, the number of internal edges in the model tree experimental tree and finally the number of internal edges in the experimental model tree.

Usage

Code Block
langhtml

SymmetricDifference model_tree_ident experimental_tree_ident [result output file]

...

Examples

Code Block
langhtml

#NEXUS

BEGIN NETWORKS;

Network tree1 = ((1,4,2),3);
Network tree2 = ((1,2),(4,3));

END;

BEGIN SO;

END;

BEGIN PHYLONET;

SymmetricDifference tree1 tree2;

END;

...

  • D.R. Robinson and L.R. Foulds. Comparison of phylogenetic trees. Mathematical Biosciences, 53:131–147131–147, 1981.

See Also