├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── data.R ├── harrietr.R ├── join_metadata.R ├── melt_distance.R └── tree_support.R ├── README.md ├── cran-comments.md ├── data ├── woodmouse.rda ├── woodmouse_iqtree.rda └── woodmouse_meta.rda ├── harrietr.Rproj └── man ├── dist_long.Rd ├── figures ├── example1.png ├── example2.png └── example3.png ├── get_node_support.Rd ├── harrietr.Rd ├── join_metadata.Rd ├── melt_dist.Rd ├── woodmouse.Rd ├── woodmouse_iqtree.Rd └── woodmouse_meta.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | # harrietr 0.2.4 2 | 3 | * Fixed bug in join_metadata function (Thanks to Deb Williamson). 4 | -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/R/data.R -------------------------------------------------------------------------------- /R/harrietr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/R/harrietr.R -------------------------------------------------------------------------------- /R/join_metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/R/join_metadata.R -------------------------------------------------------------------------------- /R/melt_distance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/R/melt_distance.R -------------------------------------------------------------------------------- /R/tree_support.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/R/tree_support.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/woodmouse.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/data/woodmouse.rda -------------------------------------------------------------------------------- /data/woodmouse_iqtree.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/data/woodmouse_iqtree.rda -------------------------------------------------------------------------------- /data/woodmouse_meta.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/data/woodmouse_meta.rda -------------------------------------------------------------------------------- /harrietr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/harrietr.Rproj -------------------------------------------------------------------------------- /man/dist_long.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/dist_long.Rd -------------------------------------------------------------------------------- /man/figures/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/figures/example1.png -------------------------------------------------------------------------------- /man/figures/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/figures/example2.png -------------------------------------------------------------------------------- /man/figures/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/figures/example3.png -------------------------------------------------------------------------------- /man/get_node_support.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/get_node_support.Rd -------------------------------------------------------------------------------- /man/harrietr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/harrietr.Rd -------------------------------------------------------------------------------- /man/join_metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/join_metadata.Rd -------------------------------------------------------------------------------- /man/melt_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/melt_dist.Rd -------------------------------------------------------------------------------- /man/woodmouse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/woodmouse.Rd -------------------------------------------------------------------------------- /man/woodmouse_iqtree.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/woodmouse_iqtree.Rd -------------------------------------------------------------------------------- /man/woodmouse_meta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersgs/harrietr/HEAD/man/woodmouse_meta.Rd --------------------------------------------------------------------------------