Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 treemodel  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));
Network tree2 = ((1,2),(4,3));

END;

BEGIN SO;

END;

BEGIN PHYLONET;

SymmetricDifference tree1 tree2;

END;

...