Hi team, I sincerely think you guys were making this package.
I'm trying to use it to visualize my tree like this
trb <- ggtree(tr) %<+% dd
MRCA(tr,'XP_003030690.1')
ggtree(trb[["data"]],branch.length = "none",layout = "circular")+
geom_tiplab(size = 2.4,align = TRUE)+
geom_cladelab(node= 1 ,barcolor=" #94b6c6 ",barsize=35,extend=0.5,offset=1)+
geom_cladelab(node= 2 ,barcolor=" #94b6c6 ",barsize=35,extend=0.5,offset=1)
And I received Error feedback
Error in `ggplot_add()`:
! mapping and node or label can't be NULL simultaneously, we can't get the
data to be displayed in this layer, please provide a data or subset, node
and label in mapping, we will extract the node and label from tree data,
or provide node and label!
Am I missing something?