]> git.donarmstrong.com Git - ape.git/blob - man/write.nexus.Rd
some news for ape 3.0-8
[ape.git] / man / write.nexus.Rd
1 \name{write.nexus}
2 \alias{write.nexus}
3 \title{Write Tree File in Nexus Format}
4 \usage{
5 write.nexus(..., file = "", translate = TRUE)
6 }
7 \arguments{
8   \item{\dots}{either (i) a single object of class \code{"phylo"}, (ii) a
9     series of such objects separated by commas, or (iii) a list
10     containing such objects.}
11   \item{file}{a file name specified by either a variable of mode character,
12     or a double-quoted string; if \code{file = ""} (the default) then the
13     tree is written on the standard output connection.}
14   \item{translate}{a logical, if \code{TRUE} (the default) a translation
15     of the tip labels is done which are replaced in the parenthetic
16     representation with tokens.}
17 }
18 \description{
19   This function writes trees in a file with the NEXUS format.
20 }
21 \details{
22   If several trees are given, they must all have the same tip labels.
23
24   If among the objects given some are not trees of class \code{"phylo"},
25   they are simply skipped and not written in the file.
26 }
27 \value{
28   None (invisible `NULL').
29 }
30 \references{
31   Maddison, D. R., Swofford, D. L. and Maddison, W. P. (1997) NEXUS: an
32   extensible file format for systematic information. \emph{Systematic
33     Biology}, \bold{46}, 590--621.
34 }
35
36 \author{Emmanuel Paradis}
37 \seealso{
38   \code{\link{read.nexus}}, \code{\link{read.tree}},
39   \code{\link{write.tree}}, \code{\link{read.nexus.data}},
40   \code{\link{write.nexus.data}}
41 }
42 \keyword{manip}
43 \keyword{IO}