Uses of Class
org.episteme.natural.biology.phylogeny.PhylogeneticTree.Node
Packages that use PhylogeneticTree.Node
Package
Description
Biological modeling, genetics, and life science simulations.
-
Uses of PhylogeneticTree.Node in org.episteme.natural.biology.phylogeny
Fields in org.episteme.natural.biology.phylogeny declared as PhylogeneticTree.NodeModifier and TypeFieldDescriptionfinal PhylogeneticTree.NodePhylogeneticTree.Node.leftfinal PhylogeneticTree.NodePhylogeneticTree.Node.rightMethods in org.episteme.natural.biology.phylogeny that return PhylogeneticTree.NodeModifier and TypeMethodDescriptionstatic PhylogeneticTree.NodePhylogeneticTree.buildNeighborJoining(Real[][] distanceMatrix, List<Species> speciesList) static PhylogeneticTree.NodePhylogeneticTree.buildNeighborJoiningFromLabels(Real[][] distanceMatrix, List<String> labels) Builds a phylogenetic tree using Neighbor-Joining algorithm (String labels).static PhylogeneticTree.NodePhylogeneticTree.buildUPGMA(Real[][] distanceMatrix, List<Species> speciesList) static PhylogeneticTree.NodePhylogeneticTree.buildUPGMAFromLabels(Real[][] distanceMatrix, List<String> labels) Builds a phylogenetic tree using UPGMA algorithm (String labels).static PhylogeneticTree.NodePhylogeneticTree.parseNewick(String newick) Parses a Newick format string into a phylogenetic tree.Methods in org.episteme.natural.biology.phylogeny that return types with arguments of type PhylogeneticTree.NodeModifier and TypeMethodDescriptionstatic Tree<PhylogeneticTree.Node> PhylogeneticTree.asTree(PhylogeneticTree.Node root) Converts a phylogenetic tree to aTreeinterface for graph operations.Methods in org.episteme.natural.biology.phylogeny with parameters of type PhylogeneticTree.NodeModifier and TypeMethodDescriptionstatic Tree<PhylogeneticTree.Node> PhylogeneticTree.asTree(PhylogeneticTree.Node root) Converts a phylogenetic tree to aTreeinterface for graph operations.static intPhylogeneticTree.countLeaves(PhylogeneticTree.Node node) Counts the number of leaves in the tree.PhylogeneticTree.getLeafNames(PhylogeneticTree.Node node) Gets all leaf names from the tree.Constructors in org.episteme.natural.biology.phylogeny with parameters of type PhylogeneticTree.NodeModifierConstructorDescriptionNode(String name, PhylogeneticTree.Node left, PhylogeneticTree.Node right, Real branchLength) Internal node constructor with branch lengthNode(PhylogeneticTree.Node left, PhylogeneticTree.Node right, Real height) Internal node constructor for UPGMA