(C++) Newick
January 3, 2018 ยท View on GitHub
A Newick is a way to write down a phylogeny as a std::string. This page shows how to check this std::string and how to store a Newick more efficiently.
Because personally, I only work with Newicks in the form '(((A,B),(C,D)),E)', these algorithms will so as well.
Newick code snippets
- CalcComplexity
- CalcNumOfCombinations
- CalcNumOfSymmetries
- CheckNewick
- CreateInvalidNewicks
- CreateValidNewicks
- DumbNewickToString
- GetRootBranches
- GetSimplerNewicks
- InspectInvalidNewick
- IsBinaryNewick
- IsNewick
- NewickToString
- BinaryNewickVector
- StringToNewick
External links
- Newick: a bundle of tested Newick functions