I have a tree which needs to be rerooted multiple times upon several conditions, one of which is the bootstrap value. Ape leaves an empty vector for the bootstrap value of a root. What is the real bootstrap of this node? Why is this and how should I resolve this issue?
> tree$node
[1] "" "96" "100" "88" "100" "84" "48" "80" "84" "76" "100" "68"
[13] "36" "100" "100" "100" "100" "60" "36" "88" "36" "92" "48" "48"
[25] "100" "40" "64" "100" "68" "88" "100" "48" "100" "40"
> root(tree, node = 42)$node
[1] "84" "100" "88" "" "96" "100" "48" "80" "84" "76" "100" "68"
[13] "36" "100" "100" "100" "100" "60" "36" "88" "36" "92" "48" "48"
[25] "100" "40" "64" "100" "68" "88" "100" "48" "100" "40"
Hi laemtao,
I met the same problem using ape. Have you resolved this problem? Thank you!