Versions Compared

Key

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

Description

Computes the number of coalescent scenarios that can explain the incongruence observed between two trees. The trees must be specified in the Rich Newick Format.

Usage

Code Block
langhtml
countcoal network_ident1 network_ident2 [resultOutputFile]

network_ident1

The name of the first network.

mandatory

network_ident2

The name of the second network.

mandatory

resultOutputFile

Optional file destination for command output.

optional

Examples

Code Block
langhtml
#NEXUS

BEGIN NETWORKS;

Network net1 = ((a,b),(c,(d,(e,(f,g)))));
Network net2 = ((f,b),(c,(d,(a,(e,g)))));

END;


BEGIN PHYLONET;

countCoal net1 net2;

END;

See Also