Versions Compared

Key

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

...

Infers a species network(s) with a specified number of reticulation nodes under MDC criterion using parsimony-based method. The reticulation nodes in the inferred network will have inferred inheritance probabilities associated with them. To find the optimal network, steepest descent is used. The species network and gene trees must be specified in the Rich Newick Format. However, only topologies of them are used in the method.

The input gene trees can be gene tree distributions inferred from Bayesian methods like MrBayes. See the second example below.

Usage

Code Block
langhtml
InferNetwork_parsimony (gene_tree_ident1 [, gene_tree_ident2...|, gene_tree_ident2...]) numReticulations [-a taxa map] [-b threshold] [-s startingNetwork] [-n numNetReturned]  [-m maxNetExamined] [-d maxDiameter] [-di] [result output file]

...

By default, it is assumed that only one individual is sampled per species in gene trees. However, the option [-a taxa map] allows multiple alleles to be sampled.

Examples

Code Block
langhtml
#NEXUS

BEGIN TREES;

Tree geneTree1 = (C,((B,D),A));
Tree geneTree2 = (B,(D,(C,A)));
Tree geneTree3 = (D,(B,(C,A)));
Tree geneTree4 = (D,(B,(C,A)));

END;


BEGIN PHYLONET;

InferNetwork_parsimony (geneTree1,geneTree2,geneTree3,geneTree4) 1;

END;
Code Block
langhtml
#NEXUS

BEGIN TREES;

Tree geneTree1 = [&W 0.8] (C,((B,D),A));
Tree geneTree2 = [&W 0.2] (B,(D,(C,A)));
Tree geneTree3 = [&W 0.7] (D,(B,(C,A)));
Tree geneTree4 = [&W 0.3] (D,(B,(C,A)));

END;


BEGIN PHYLONET;

InferNetwork_parsimony (geneTree1,geneTree2,geneTree3,geneTree4) 1;

END;

...