read.newick {phytools}R Documentation

Robust Newick style tree reader

Description

This function reads a Newick style tree from file.

Usage

read.newick(file="", text)

Arguments

file

name of text file with single Newick style tree or multiple trees, one per line.

text

character string containing tree.

Details

This function is almost completely redundant with read.tree; however it is 'robust' in that it does not fail if the tree contains so-called 'singles' (nodes with only one descendant).

Value

An object of class "phylo", possibly containing singles (see collapse.singles).

Author(s)

Liam Revell liam.revell@umb.edu

References

Revell, L. J. (2012) phytools: An R package for phylogenetic comparative biology (and other things). Methods Ecol. Evol., 3, 217-223.

See Also

read.tree, read.nexus

Examples

tree<-"((Human,Chimp),Gorilla),Monkey);"
phy<-read.newick(text=tree)

[Package phytools version 0.4-60 Index]