phytools (version 0.6-44)

read.newick: 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.

...

optional arguments to be passed to scan. Note that if the arguments sep or what are supplied this could generate an error. Useful optional arguments might include skip (number of lines to skip) and nlines (number of lines to read).

Value

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

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).

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

Run this code
# NOT RUN {
tree<-"((Human,Chimp),Gorilla),Monkey);"
phy<-read.newick(text=tree)
# }

Run the code above in your browser using DataCamp Workspace