# Tree annotation with analysis of R packages ## annotating tree with ape bootstraping analysis ```{r results='hide', message=FALSE} library(ape) data(woodmouse) d <- dist.dna(woodmouse) tr <- nj(d) bp <- boot.phylo(tr, woodmouse, function(xx) nj(dist.dna(xx))) ``` ```{r fig.width=6, fig.height=6, warning=FALSE, fig.align="center"} library(treeio) tree <- as.treedata(tr, boot = bp) ggtree(tree) + geom_label(aes(label=bootstrap)) + geom_tiplab() ``` ## annotating tree with phangorn output ```{r results='hide', message=FALSE, fig.width=12, fig.height=10, width=60, warning=FALSE, fig.align="center", eval=FALSE} library(phangorn) treefile <- system.file("extdata", "pa.nwk", package="treeio") tre <- read.tree(treefile) tipseqfile <- system.file("extdata", "pa.fas", package="treeio") tipseq <- read.phyDat(tipseqfile,format="fasta") fit <- pml(tre, tipseq, k=4) fit <- optim.pml(fit, optNni=FALSE, optBf=T, optQ=T, optInv=T, optGamma=T, optEdge=TRUE, optRooted=FALSE, model = "GTR") phangorn <- phyPML(fit, type="ml") ggtree(phangorn) + geom_text(aes(x=branch, label=AA_subs, vjust=-.5)) ```  ## phylo4d `phylo4d` was defined in the `phylobase` package, which can be employed to integrate user's data with phylogenetic tree. `phylo4d` was supported in `ggtree` and the data stored in the object can be used directly to annotate the tree. ```{r fig.width=6, fig.height=5, warning=FALSE, fig.align="center", eval=FALSE} dd2 <- dd[, -1] rownames(dd2) <- dd[,1] require(phylobase) tr2 <- phylo4d(tree, dd2) ggtree(tr2) + geom_tiplab(aes(color=place)) + geom_tippoint(aes(size=value, shape=place, color=place), alpha=0.25) ```  ## jplace file format `ggtree` provides `write.jplace()` function to store user's own data and associated newick tree to a single `jplace` file, which can be parsed directly in `ggtree` and user's data can be used to annotate the tree directly. For more detail, please refer to the [Tree Data Import](treeImport.html#jplace-file-format) vignette.