You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Node_analysis() returns information for numbered node IDs, but not the original node labels in the tree. For custom tree plotting purposes, I need the node labels, no just numbered node IDs. tree$node.label will provide the node labels, but how do I match that to the node IDs returned by Node_analysis()? The node IDs are not simply the index of the node.label vector. Are the node IDs the index of c(tree$tip.label, tree$node.label), or will the node IDs not match the ordering of the tip/node labels?
The text was updated successfully, but these errors were encountered:
Sorry, I've been away from the computer - you're right, they're simply the index of c(tree$tip.label, tree$node.label). But actually it makes sense to retain the original node label information in the return object from Node_analysis
Node_analysis()
returns information for numbered node IDs, but not the original node labels in the tree. For custom tree plotting purposes, I need the node labels, no just numbered node IDs.tree$node.label
will provide the node labels, but how do I match that to the node IDs returned byNode_analysis()
? The node IDs are not simply the index of the node.label vector. Are the node IDs the index ofc(tree$tip.label, tree$node.label)
, or will the node IDs not match the ordering of the tip/node labels?The text was updated successfully, but these errors were encountered: