Closed LunaSare closed 2 years ago
I am running congruify on phylo objects that are also another class. Using is.phylo(stock) instead of class(stock) == "phylo" allows testing data objects with multiple classes.
is.phylo(stock)
class(stock) == "phylo"
Fixed here https://github.com/mwpennell/geiger-v2/commit/4c26e6f842df61bb3278d17d0dae3990f84408c6 thanks @liamrevell
I am running congruify on phylo objects that are also another class. Using
is.phylo(stock)
instead ofclass(stock) == "phylo"
allows testing data objects with multiple classes.