Contents

1 Introduction

Here we present a vignette for the R package tanggle, and provide an overview of its functions and their usage. Tanggle extends the ggtree R package (Yu et al. 2017) to allow for the visualization of several types of phylogenetic networks using the ggplot2 (Wickham 2016) syntax. More specifically, tanggle contains functions to allow the user to effectively plot: (1) split (i.e. implicit) networks (unrooted, undirected) and (2) explicit networks (rooted, directed) with reticulations. It offers an alternative to the plot functions already available in ape (Paradis and Schliep 2018) and phangorn (Schliep 2011).

2 List of functions

Function name Brief description
geom_splitnet Adds a splitnet layer to a ggplot, to combine visualising data and the network
ggevonet Plots an explicit network from a phylo object
ggsplitnet Plots an implicit network from a phylo object
minimize_overlap Reduces the number of reticulation lines crossing over in the plot
node_depth_evonet Returns the depths or heights of nodes and tips in the phylogenetic network

3 Getting started

Install the package from Bioconductor directly:

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("tanggle")

Or install the development version of the package from Github.

if (!requireNamespace("remotes", quietly=TRUE))
  install.packages("remotes")
remotes::install_github("KlausVigo/tanggle")

If you need to install ggtree from github:

remotes::install_github("YuLab-SMU/ggtree")

And load all the libraries:

library(tanggle)
library(phangorn)
library(ggtree)

4 Split Networks

Split networks are data-display objects which allow for the definition of 2 (or more) options for non-compatible splits. Split networks are most often used to visualize consensus networks (Holland et al. 2004) or neighbor-nets (Bryant and Moulton 2004). This can be done either by using the consensusNet or neighbor-net functions in phangorn (Schliep 2011) or by importing nexus files from SplitsTree (Huson and Bryant 2006).

4.1 Data Types

tanggle accepts three forms of input data for split networks. The following input options all generate a networx object for plotting.

  • Nexus file created with SplitsTree (Huson and Bryant 2006) and read with the read.nexus.network function in phangorn (Schliep 2011).

  • Read in a split network in nexus format:

fdir <- system.file("extdata/trees", package = "phangorn")
Nnet <- phangorn::read.nexus.networx(file.path(fdir,"woodmouse.nxs"))
  1. A collection of gene trees (e.g.~from RAxML (Stamatakis 2014)) in one of the following formats:
    • Nexus file read with the function read.nexus
    • Text file in Newick format (one gene tree per line) read with the function read.tree A consensus split network is then computed using the function consensusNet in phangorn (Schliep 2011).
  • Sequences in nexus, fasta or phylip format, read with the function read.phyDat in phangorn (Schliep 2011) or the function read.dna in ape (Paradis and Schliep 2018). Distances matrices are then computed for specific models of evolution using the function dist.ml in phangorn (Schliep 2011) or dist.dna in ape (Paradis and Schliep 2018). From the distance matrix, a split network is reconstructed using the function neighborNet in phangorn (Schliep 2011). Optional: branch lengths may be estimated using the function splitsNetworks in phangorn (Schliep 2011).

4.2 Plotting a Split Network:

We can plot the network with the default options:

p <- ggsplitnet(Nnet) + geom_tiplab2()
p

When we can set the limits for the x and y axis so that the labels are readable.

p <- p + xlim(-0.019, .003) + ylim(-.01,.012) 
p

You can rename tip labels. Here we changed the names to species from 1 to 15:

Nnet$translate$label <- seq_along(Nnet$tip.label)

We can include the tip labels with geom_tiplab2, and customize some of the options. For example, here the tip labels are in blue and both in bold and italics, and we show the internal nodes in green:

ggsplitnet(Nnet) + geom_tiplab2(col = "blue", font = 4, hjust = -0.15) + 
    geom_nodepoint(col = "green", size = 0.25)

Nodes can also be annotated with geom_point.

ggsplitnet(Nnet) + geom_point(aes(shape=isTip, color=isTip), size=2)

4.3 Plotting Explicit Networks

The function ggevonet plots explicit networks (phylogenetic trees with reticulations). A recent addition to ape (Paradis and Schliep 2018) made it possible to read in trees in extended newick format (Cardona, Rosselló, and Valiente 2008).

Read in an explicit network (example from Fig. 2 in Cardona et al. 2008):

z <- read.evonet(text = "((1,((2,(3,(4)Y#H1)g)e,(((Y#H1,5)h,6)f)X#H2)c)a,
                 ((X#H2,7)d,8)b)r;")

Plot an explicit network:

ggevonet(z, layout = "rectangular") + geom_tiplab() + geom_nodelab()

p <- ggevonet(z, layout = "slanted") + geom_tiplab() + geom_nodelab()
p + geom_tiplab(size=3, color="purple")

p + geom_nodepoint(color="#b5e521", alpha=1/4, size=10)

5 Summary

This vignette illustrates all the functions in the R package tanggle, and provides some examples on how to plot both explicit and implicit networks. The split network plots should take most of the functions compatible with unrooted trees in ggtree. The layout options for explicit network plots are rectangular or slanted.

Session info

sessionInfo()
#> R Under development (unstable) (2023-10-22 r85388)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.19-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] phangorn_2.11.1  ape_5.7-1        tanggle_1.9.0    ggtree_3.11.0   
#> [5] ggplot2_3.4.4    BiocStyle_2.31.0
#> 
#> loaded via a namespace (and not attached):
#>  [1] yulab.utils_0.1.0   sass_0.4.7          utf8_1.2.4         
#>  [4] generics_0.1.3      tidyr_1.3.0         ggplotify_0.1.2    
#>  [7] lattice_0.22-5      digest_0.6.33       magrittr_2.0.3     
#> [10] evaluate_0.22       grid_4.4.0          bookdown_0.36      
#> [13] fastmap_1.1.1       Matrix_1.6-1.1      jsonlite_1.8.7     
#> [16] BiocManager_1.30.22 purrr_1.0.2         fansi_1.0.5        
#> [19] aplot_0.2.2         scales_1.2.1        codetools_0.2-19   
#> [22] lazyeval_0.2.2      jquerylib_0.1.4     cli_3.6.1          
#> [25] rlang_1.1.1         munsell_0.5.0       tidytree_0.4.5     
#> [28] withr_2.5.1         cachem_1.0.8        yaml_2.3.7         
#> [31] tools_4.4.0         parallel_4.4.0      memoise_2.0.1      
#> [34] dplyr_1.1.3         colorspace_2.1-0    fastmatch_1.1-4    
#> [37] vctrs_0.6.4         R6_2.5.1            gridGraphics_0.5-1 
#> [40] magick_2.8.1        lifecycle_1.0.3     fs_1.6.3           
#> [43] ggfun_0.1.3         treeio_1.27.0       pkgconfig_2.0.3    
#> [46] pillar_1.9.0        bslib_0.5.1         gtable_0.3.4       
#> [49] glue_1.6.2          Rcpp_1.0.11         xfun_0.40          
#> [52] tibble_3.2.1        tidyselect_1.2.0    knitr_1.44         
#> [55] farver_2.1.1        igraph_1.5.1        patchwork_1.1.3    
#> [58] htmltools_0.5.6.1   nlme_3.1-163        labeling_0.4.3     
#> [61] rmarkdown_2.25      compiler_4.4.0      quadprog_1.5-8

6 References

Bryant, David, and Vincent Moulton. 2004. “Neighbor-Net: An Agglomerative Method for the Construction of Phylogenetic Networks.” Molecular Biology and Evolution 21 (2): 255–65. https://doi.org/10.1093/molbev/msh018.

Cardona, Gabriel, Francesc Rosselló, and Gabriel Valiente. 2008. “Extended Newick: It Is Time for a Standard Representation of Phylogenetic Networks.” BMC Bioinformatics 9 (1): 532. https://doi.org/10.1186/1471-2105-9-532.

Holland, Barbara R., Katharina T. Huber, Vincent Moulton, and Peter J. Lockhart. 2004. “Using Consensus Networks to Visualize Contradictory Evidence for Species Phylogeny.” Molecular Biology and Evolution 21 (7): 1459–61. https://doi.org/10.1093/molbev/msh145.

Huson, D. H., and D. Bryant. 2006. “Application of Phylogenetic Networks in Evolutionary Studies.” Molecular Biology and Evolution 23 (2): 254–67.

Paradis, Emmanuel, and Klaus Schliep. 2018. “Ape 5.0: An Environment for Modern Phylogenetics and Evolutionary Analyses in R.” Bioinformatics 35 (3): 526–28.

Schliep, Klaus Peter. 2011. “Phangorn: Phylogenetic Analysis in R.” Bioinformatics 27 (4): 592–93. https://doi.org/10.1093/bioinformatics/btq706.

Stamatakis, A. 2014. “raXml Version 8: A Tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies.” Bioinformatics 30 (9): 1312–3.

Wickham, Hadley. 2016. Ggplot2: Elegant Graphics for Data Analysis. Springer-Verlag New York. https://ggplot2.tidyverse.org.

Yu, Guangchuang, David Smith, Huachen Zhu, Yi Guan, and Tommy Tsan-Yuk Lam. 2017. “Ggtree: An R Package for Visualization and Annotation of Phylogenetic Trees with Their Covariates and Other Associated Data.” Methods in Ecology and Evolution 8 (1): 28–36. https://doi.org/10.1111/2041-210X.12628.

Appendix