```R > t1 <- read.tree('RAxML_bestTree.fastTrans_9.raxml') > is.rooted(t1) [1] TRUE ``` but BioPython disagrees: ```python >>> from Bio import Phylo >>> t = Phylo.read('RAxML_bestTree.fastTrans_9.raxml', 'newick') >>> t.rooted False ```