TreeTools (version 1.4.1)

as.Newick: Write a phylogenetic tree in Newick format

Description

as.Newick() creates a character string representation of a phylogenetic tree, in the Newick format, using R's internal tip numbering. Use RenumberTips() to ensure that the internal numbering follows the order you expect.

Usage

as.Newick(x)

# S3 method for phylo as.Newick(x)

# S3 method for list as.Newick(x)

# S3 method for multiPhylo as.Newick(x)

Arguments

x

Object to convert to Newick format. See Usage section for supported classes.

Value

as.Newick() returns a character string representing tree in Newick format.

See Also

Examples

Run this code
# NOT RUN {
trees <- list(BalancedTree(1:8), PectinateTree(8:1))
trees <- lapply(trees, RenumberTips, 1:8)
as.Newick(trees)

# }

Run the code above in your browser using DataCamp Workspace