Creates a new external node with the given taxon. See createInternalNode for a description of how to use these methods. @param source the source node @return the created node reference
(Node source, Taxon taxon)
| 133 | * @return the created node reference |
| 134 | */ |
| 135 | private Node createExternalNode(Node source, Taxon taxon) { |
| 136 | ReRootedNode node = new ReRootedNode(source, taxon); |
| 137 | externalNodes.put(taxon, node); |
| 138 | return node; |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Once a SimpleRootedTree has been created, the node stucture can be created by |
no test coverage detected