Versions Compared

Key

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

...

Refines and root gene trees with respect to a rooted binary species tree under MDC criterion. The input gene trees must be specified in the rich newick format Rich Newick Format. Gene trees must be rooted. Gene losses are allowed. The generated output trees will also be generated in the rich newick format. Multiple species trees may be specified in which case the tool will run in batch mode with one execution of each species tree and set of gene trees.

Usage

Code Block
langhtml

Process_GT {species_tree_ident1 [, species_tree_ident2...]} {gene_tree_ident1 [, gene_tree_ident2...]} [-u] [-b threshold] [-a taxa map] [result output file]

...

Examples

Code Block
langhtml

#NEXUS

BEGIN TREES;

Tree speceiesTree = ((((a:1,b:2),c:3),d:4),e:5);
Tree geneTree1 = (((a:1,b:2,c:3),d:4),e:5);
END;


BEGIN PHYLONET;

ProcessGT {speceiesTree, speceiesTree} {geneTree1};

END;

...