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
Hi,
I tried to follow the vignette to convert a dataframe to Newick format, but I the branch length in the output are wrong, although the overall shape of the tree is correct.
This is my current data.tree object:
`
population = FromDataFrameTable(myTable, pathName = "LineageTracing", colLevels = c("TimeBranching") , na.rm = FALSE)
print(population,"TimeBranching")
levelName TimeBranching
1 1 0
2 ¦--2 1
3 ¦--3 5
4 ¦--4 9
5 ¦ °--6 1
6 °--5 10 and the way I tried to convert it to Newick format:
ToNewick(population, heightAttribute = "TimeBranching")
"(2:-1,3:-5,(6:8)4:-9,5:-10)1;"
`
the output should be "(2:1,3:5,(6:1)4:9,5:10)1;" instead.
Is there a way to fix this issue ? Thank you in advance!
The text was updated successfully, but these errors were encountered:
Hi,
I tried to follow the vignette to convert a dataframe to Newick format, but I the branch length in the output are wrong, although the overall shape of the tree is correct.
This is my current data.tree object:
`
Is there a way to fix this issue ? Thank you in advance!
The text was updated successfully, but these errors were encountered: