Generates species tree topologies based on maximal sets of compatible clusters. The input trees must be specified in the rich newick format. The generated output trees will be contained in a user specified file and also in rich newick format.
genst {gene_tree_ident1 [, gene_tree_ident2...]} out_file
|
gene_tree_ident1 [, gene_tree_ident2...] |
Comma delimited set of gene tree identifiers. |
mandatory |
out_file |
The output file destination of the generated species trees. |
mandatory |
#NEXUS
BEGIN NETWORKS;
Network net1 = ((a,b),(c,(d,(e,(f,g)))));
Network net2 = ((f,b),(c,(d,(a,(e,g)))));
END;
BEGIN PHYLONET;
genst {net1, net2} "C:\temp\genst.out.txt";
END;
|