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
In src/treestats.c, node labels (strings) are converted into integers using a deterministic heap sort and search. Thereafter, labels are compared as integer values within the kernel code. However, we may want match labels as patterns. For example, if a tip has multiple states A and B, it should match another tip in state A just as it matches tips in state B.
The text was updated successfully, but these errors were encountered:
I think the best way to implement this is to have a user-specified weight matrix. For example, in the situation where there are three labels A, B and C, we can use this matrix:
In
src/treestats.c
, node labels (strings) are converted into integers using a deterministic heap sort and search. Thereafter, labels are compared as integer values within the kernel code. However, we may want match labels as patterns. For example, if a tip has multiple statesA
andB
, it should match another tip in stateA
just as it matches tips in stateB
.The text was updated successfully, but these errors were encountered: