November 2018
Intermediate to advanced
360 pages
9h 36m
English
Take a look at the following steps:
from copy import deepcopyfrom Bio import Phyloebola_tree = Phylo.read('my_ebola.nex', 'nexus')ebola_tree.name = 'Ebolavirus tree'ebola_simple_tree = Phylo.read('ebola_simple.nex', 'nexus')ebola_simple_tree.name = 'Ebolavirus simplified tree'
For all of the trees that we read, we will change the name of the tree, since the name will be printed later.
Phylo.draw_ascii(ebola_simple_tree)Phylo.draw_ascii(ebola_tree)
The ASCII representation of the simplified genus tree is shown in the following diagram. Here, we will not print the complete version because it will take several pages, but if you run ...