We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
if get_common_ancestor is called with two identical trees the method returns the highest common ancestor rather than the lowest common ancestor.
get_common_ancestor
ncbitree.get_common_ancestor([str(9606), str(9606)]) PhyloTree node '1' (-0x7ffffd502bce2abd)
As a workaround I put a check in before calling the method, but the result was unexpected.
The text was updated successfully, but these errors were encountered:
return mrca when target nodes are equal etetoolkit#398
e755a3e
Merge pull request #452 from etetoolkit/mca_method_issue_398
6cad2f7
returns itself if same node is provided as only argument to get_common_ancestor. Fixes #398
dengzq1234
Successfully merging a pull request may close this issue.
if
get_common_ancestor
is called with two identical trees the method returns the highest common ancestor rather than the lowest common ancestor.As a workaround I put a check in before calling the method, but the result was unexpected.
The text was updated successfully, but these errors were encountered: