A library for working with phylogenetic and population genetic data.
v0.27.0
Tree Visualization

We provide functionality for writing a Tree to different file formats that allow visualization via external tree viewers:

  • NewickWriter, for general newick tree files that can be read and visualized by most other tools.
  • PhyloxmlWriter, for phyloxml tree files, best suited for the Archaeopteryx tree viewer.
  • NexusWriter, for nexus files, which internally also use newick to store trees; best suited for the FigTree tree viewer.
  • Additionally, we offer an easy way to draw Trees directly to svg files, yielding publication quality vector graphics. This is the only type of visualization that directly supports to also draw a legend for edge colors.

Remarks: See Czech et al. 2017 for a comprehensive review on tree viewers.

In the following, we assume that the following namespaces are available:

using namespace genesis::tree;
using namespace genesis::utils;

Edge colors

Many of the tree visualization that we for example explain in the Placement Analyses tutorial or that are part of our analysis program gappa visualize trees with individually colored edges. Here, we explain how this is done in genesis.

Firstly, get a tree and see how many edges it has:

Tree tree = CommonTreeNewickReader().read( from_file( "path/to/tree.newick" ));
LOG_INFO << "Tree has " << tree.edge_count() << " edges.";

Now, create a vector of Color objects for each edge of the tree:

auto edge_colors = std::vector<Color>( tree.edge_count(), Color( 1.0, 0.0, 0.0 ) );

See the Colors tutorial on how color is handled in genesis.

In the above snippet, we made all edges red. The TreeEdge::index() of each edge corresponds to one position in the vector. See the Indices of Links, Nodes, and Edges section for details on indices. One can change edge colors in the vector according to these indices. For example, make all edges leading to tip nodes blue:

for( auto const& edge : tree.edges() ) {
if( is_leaf( edge )) {
edge_colors[ edge.index() ] = Color( 0.0, 0.0, 1.0 );
}
}

In an actual algorithm for analyzing some data, the colors can then be set as needed, for example by using a color gradient. Color gradients can be achieved using ColorMap and ColorNormalization, see the Colors tutorial for details.

Now that we have a std::vector of Colors for each edge of the tree, we can store the result in various formats.

Writing to tree format files

As discussed in the sections Reading and Writing and Reading and Writing Revisited, one can use NewickWriter and PhyloxmlWriter to write Trees to newick and phyloxml files.

Write to newick

The newick format does not support colors. However, for visualizing just the tree topology with taxon names and branch lengths, it is still useful. If just these defaults are needed, we offer a simple function that wraps the CommonTreeNewickWriter:

write_tree_to_newick_file( tree, "path/to/new_tree.newick" );

This can be visualized with most tree viewers.

Write to phyloxml

The phyloxml format offers some more annotations, and allows for color annotations for its branches. This is for example used by the guppy tool that is part of the pplacer suite of programs of phylogenetic placement. See their notes on phyloxml for some details. See phyloxml.org for details on the format.

To write a tree with colored edges, we can again use a simple wrapper function:

write_color_tree_to_phyloxml_file( tree, edge_colors, "path/to/new_tree.phyloxml" );

The resulting phyloxml file is best viewed with the Archaeopteryx tree viewer. There is also write_tree_to_phyloxml_file() as a wrapper without colors, as well as a version that takes a list of per-edge values and a ColorMap and ColorNormalization, and performs the transformation of values into colors as well. See their implementation to get the gist of how this works behind the scenes.

Write to nexus

The nexus format is a container format that also allows to store trees. See for example this page for some details on the format.

It works similar to the phyloxml wrappers:

write_color_tree_to_nexus_file( tree, edge_colors, "path/to/new_tree.nexus" );

The resulting file is best viewed with the FigTree tree viewer. Again, there is write_tree_to_nexus_file() for a version without colors, and one that also transforms per-edge values to colors first. See the implementation of these wrapper functions to understand how to build a NexusDocument containing a tree from scratch.

Drawing to SVG

The above functions yield files that can be viewed with external tree viewers. This is cumbersome for automatization and for testing purposes. Furthermore, tree viewers do not support advanced features such as putting a legend for the color scale next to the tree. Hence, we offer to draw trees to svg files directly.

This means that all layout parameters have to be set in the code. Most importantly, these are:

  • The LayoutShape of the tree: Is the tree drawn circularly or rectangularly?
  • The LayoutType of the tree: Is the tree drawn as a phylogram (with branch lengths), or as a cladogram (without branch lengths - all leaf nodes end at the same distance)?
  • Do we want to ladderize() the tree, i.e., sort the subtrees by number of leaves?
  • What kind of SvgStroke do we want for the edges? Line widths, dashed lines, and line colors.

Simple wrapper functions

These properties are summarized in LayoutParameters, which can be used again with simple wrapper functions to get svg drawings of a tree. We here use the edge_colors from above to show edges that lead to leaf nodes in blue:

// Prepare the layout parameters
LayoutParameters params;
params.type = LayoutType::kPhylogram;
params.shape = LayoutShape::kRectangular;
params.stroke.width = 3.0;
// Use them to write an svg file
write_color_tree_to_svg_file( tree, params, edge_colors, "path/to/new_tree.svg" );

This yields the following figure:

Tree with edges leading to leaf nodes marked in blue.

Again, there also is a version write_tree_to_svg_file() that does not use colors, but simply write a tree with black branches.

Adding a color legend

Writing to svg is the only way to directly draw the legend for the edge colors into the document. This allows to interpret which edge color corresponds to which value. Let's visualize the branch lengths of the tree:

// Collect the branch lengths of the tree
auto edge_values = std::vector<double>( tree.edge_count() );
for( size_t i = 0; i < tree.edge_count(); ++i ) {
edge_values[i] = tree.edge_at(i).data<CommonEdgeData>().branch_length;
}
// Make a color map and a normalization that is scaled to the largest value in the data,
// while keeping the min at 0
auto color_map = ColorMap( color_list_viridis() );
auto color_norm = ColorNormalizationLinear();
color_norm.autoscale_max( edge_values );
// Use this to create an svg drawing including a color legend
write_color_tree_to_svg_file( tree, params, edge_values, color_map, color_norm, "branch_length_tree.svg" );

See the Colors tutorial on how color is handled in genesis, and on the ColorMap and ColorNormalization classes in particular.

The above snippet yields a figure similar to the following one, where longer branches have a darker color:

Tree with branch lengths visualized by colors.

The figure was fine tuned afterwards, because programmatically setting all font sizes, line widths, spaces between figure elements, etc, to nice values is tricky. We however did not remove or add any elements to the drawing: For example, all parts of the legend, including the labeling with fitting intervals (0 to 0.3), are automatic. We recommend Inkscape for fine tuning of the resulting svg files.

Beyond the wrapper functions

The above functions are all wrappers for simplicity. They cover the most common use cases, and in particular cover per-edge colors. They however do not allow for other types of individual edge styles (dashed, line widths, etc). If this is required, one can use the implementation of the wrappers as a starting point to create their own visualizations.

The LayoutBase class is a good starting point for more specialized visualizations. It allows:

  • Individual strokes for the two parts of an edge (the one that spreads away from the parent, and the one that symbolizes branch lengths). These strokes can have individual colors, widths, dashes, etc.
  • Aligning the taxon labels to each other, as well as an additional stroke towards these labels (typically, a gray dashed line or something similar can be used here).
  • Individual per-edge and per-node shapes, for example to mark leaf nodes with colored dots that symbolize additional information about the taxa of the tree.

A final set of functions that we want to mention are the heat_tree() functions, which allow to draw a tree to svg, with a heat matrix next to it for each of its taxa, which can for example show per-sample data for each of the taxa of the tree. This is commonly used in metagenomic and environmental studies.

LOG_INFO
#define LOG_INFO
Log an info message. See genesis::utils::LoggingLevel.
Definition: logging.hpp:100
genesis::utils::from_file
std::shared_ptr< BaseInputSource > from_file(std::string const &file_name, bool detect_compression=true)
Obtain an input source for reading from a file.
Definition: input_source.hpp:67
genesis::tree
Definition: placement/formats/edge_color.hpp:46
genesis.hpp
genesis::tree::write_tree_to_newick_file
void write_tree_to_newick_file(CommonTree const &tree, std::string const &newick_filename)
Write a newick file containing a tree.
Definition: tree/drawing/functions.cpp:68
genesis::tree::write_color_tree_to_phyloxml_file
void write_color_tree_to_phyloxml_file(CommonTree const &tree, std::vector< utils::Color > const &color_per_branch, std::string const &phyloxml_filename)
Definition: tree/drawing/functions.cpp:88
genesis::utils
Definition: placement/formats/edge_color.hpp:42
genesis::tree::write_color_tree_to_svg_file
void write_color_tree_to_svg_file(CommonTree const &tree, LayoutParameters const &params, std::vector< utils::Color > const &color_per_branch, std::string const &svg_filename)
Definition: tree/drawing/functions.cpp:231
genesis::tree::is_leaf
bool is_leaf(TreeLink const &link)
Return true iff the node of the given link is a leaf node.
Definition: tree/function/functions.cpp:59
genesis::tree::write_color_tree_to_nexus_file
void write_color_tree_to_nexus_file(CommonTree const &tree, std::vector< utils::Color > const &color_per_branch, std::string const &nexus_filename)
Definition: tree/drawing/functions.cpp:131
genesis::utils::color_list_viridis
std::vector< Color > const & color_list_viridis()
Color palette viridis.
Definition: list_sequential.cpp:1521