3.0 Creating Trees

(Mac version)

< 2.0 | 3.0 | 3.1 >

Input, output, and manipulation of phylogenetic trees is an essential part of our toolkit. We first start by creating a tree in memory the hard way, by creating each node and connecting nodes by specifying each node’s neighboring nodes. If this seems way too labor-intensive, you’re right! In the next several steps, we will gradually work toward inputting and outputting trees as Newick tree descriptions.

Step Title Description
Step 3.1 Create a rooted, 3-taxon tree

Add a function that creates a 3-taxon rooted tree.

Step 3.2 Test tree creation

Test your new createTestTree() function.

< 2.0 | 3.0 | 3.1 >