Hi:
I am using the RAxML-HPC BlackBox to infer the phylogenetic tree. After it is done, I got two tree files "RAxML_bestTree.result" and "RAxML_bipartitions.result". From the RAxML manual, the output best tree is a maximum likelihood tree which is unrooted. The bipartitions tree should be the same as best tree, but with the bootstrap number. However, when I test these two tree by a third part software (R language with "ape" package), the results are wired. The best tree is tested as a rooted tree.
So I would like to ask the type (rooted or unrooted) of the two output trees.
The following is the code and results by R:
> besttree <- read.tree('RAxML_bestTree.result')
# is.rooted() is a function provided by "ape" package to test
# whether the tree is rooted (return TRUE) or not (return FALSE)
> is.rooted(besttree)
[1] TRUE
> biparttree <- read.tree('RAxML_bipartitions.result')
> is.rooted(biparttree)
[1] FALSE
Thanks,
Yulong