I am attempting to add text node labels to a circular phylogeny. When I plot the tree as rectangular, geom_nodelab() works as expected:
ggtree::ggtree(example) + ggtree::geom_nodelab(ggplot2::aes(label = anc_state_1))

However when I set tree layout to circular, it fails to plot text at the nodes.
ggtree::ggtree(example, layout = "circular") + ggtree::geom_nodelab(ggplot2::aes(label = anc_state_1))
