Learn R Programming

⚠️There's a newer version (2.1.0) of this package.Take me there.

phylogram


phylogram is an R package for working with evolutionary trees as deeply-nested lists known as "dendrogram" objects. It provides functions for importing and exporting trees in the Newick parenthetic text format, as well as several functions for command-line tree manipulation, making R's versatile dendrogram objects more accessible to evolutionary biologists.

Installation

To download phylogram from CRAN and load the package, run

install.packages("phylogram")
library("phylogram")

To download the latest development version from GitHub, run:

devtools::install_github("shaunpwilkinson/phylogram", build_vignettes = TRUE) 
library("phylogram")

Example: reading and writing trees

Consider the simple example of a tree with three members named "A", "B" and "C", where "B" and "C" are more closely related to eachother than they are to "A". An unweighted Newick string for this tree would be "(A,(B,C));". This text can be imported as a dendrogram object using the read.dendrogram function as follows:

library("phylogram")
newick <- "(A,(B,C));"
x <- read.dendrogram(text = newick)
plot(x)

The following command writes the object back to the console in Newick format without edge weights:

write.dendrogram(x, edges = FALSE)

The syntax is similar when reading and writing text files, except that the text argument is replaced by file and a valid file path is passed to the function.

To convert the dendrogram to a "phylo" object, run

y <- as.phylo(x)

These and more examples are available in the package vignette. To view the vignette, run vignette("phylogram-vignette") or access it directly from CRAN.

Help

An overview of the package with links to the function documentation can be found by running

?phylogram

If you experience a problem using this package please either raise it as an issue on GitHub or post it on the phylogram google group.

Acknowledgements

This software was developed at Victoria University of Wellington with funding from a Rutherford Foundation Postdoctoral Research Fellowship award from the Royal Society of New Zealand.

Copy Link

Version

Install

install.packages('phylogram')

Monthly Downloads

837

Version

2.0.1

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Shaun Wilkinson

Last Published

April 13th, 2018

Functions in phylogram (2.0.1)

remidpoint

Set dendrogram attributes for a nested list.
read.dendrogram

Read a dendrogram from parenthetic text.
ultrametricize

Make dendrogram ultrametric.
write.dendrogram

Export a dendrogram object to text.
ladder

Reorder tree branches in ladderized pattern.
phylogram

Dendrograms for evolutionary analysis.
as.dendrogram.phylo

Convert "phylo" objects to dendrograms.
as.phylo.dendrogram

Convert dendrogram to "phylo" object.
prune

Remove tree nodes by regular expression pattern matching.
reposition

Reset dendrogram height attributes.