Description Usage Format Source References Examples
This data set describes an estimated clock-like phylogeny of 193 HIV-1 group M sequences sampled in the Democratic Republic of Congo.
1 2 |
hivtree.newick
is a string with the tree in Newick format.
The data frame hivtree.table
contains the corresponding internode
distances.
This is a data example from Strimmer and Pybus (2001).
Strimmer, K. and Pybus, O. G. (2001) Exploring the demographic history of DNA sequences using the generalized skyline plot. Molecular Biology and Evolution, 18, 2298–2305.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # example tree in NH format (a string)
data("hivtree.newick")
hivtree.newick
# generate file "hivtree.phy" in working directory
cat(hivtree.newick, file = "hivtree.phy", sep = "\n")
tree.hiv <- read.tree("hivtree.phy") # load tree
unlink("hivtree.phy") # delete the file "hivtree.phy"
plot(tree.hiv)
# table with list of internode distances
data("hivtree.table")
hivtree.table
# construct coalescence intervals
ci <- coalescent.intervals(tree.hiv) # from tree
ci <- coalescent.intervals(hivtree.table$size) #from intervals
ci
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.