Versions Compared

Key

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

...

This command implements functions to compute the trees, tripartitions or clusters contained in a phylogenetic network. Please note that the clusters and tripartitions returned by this tool will not contain trivial ones, that is, clusters and tripartitions for the network’s root and leaves. The networks must be specified in the Rich Newick Format.

Usage

Code Block
langhtml

Charnet network_ident -m [tree|tri|cluster] [result output fileoutputFile]

network_ident

The name of the network to analyse.

mandatory

-m [tree|tri|cluster]

Characterization mode. One of tree, tri, or cluster.

mandatory

result output file outputFile

Optional file destination for command output.

optional

Examples

Code Block
langhtml

#NEXUS

BEGIN NETWORKS;

Network net = ((a,(b,(c)x#1)),((x#1,d),e));

END;


BEGIN PHYLONET;

Charnet net -m tree;

END;

...