-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in list method #68
Comments
Thanks for reporting this. It was designed to avoid repeatedly outputting (already outputted) subtrees.
I can't remember why I did this. Use the patch for now: |
OK, I think it was a bug. Thanks for reporting this. By the way, |
Yeah 11108 has no children, but considering the result formatting for the list method, it should return just itself as the result. |
Thank you for the quick response. |
Yes, it did.
Call the method separately for each taxid. |
Sure it does, but not in taxonkit list --ids 11108,11103,11050.
Seems it is the only way. thank you. |
I've fixed it, did you try the new binary?
You can replace the old binary ( |
Yes thank you. |
Thanks for your patience with my delayed response, @shenwei356. You are correct, PyTaxonKit doesn't perform any filtering on |
Hi,
I am using list command to get the sub-trees for 3 taxa of [11050, 11103, 11108], the result is different for different orders of these taxa. i.e.:
When I call taxonkit list --ids ... for tax ids that are in the same path of the tree (in the same lineage) in the order of top to bottom, it does not return the result for the descendant, but changing the order from bottom to up, the result is different and it somehow returns the correct result.
As an example taxonkit list --ids 11050,11103,11108,--show-name --indent "" just returns the result for 11050 which is an ancestor for the others, but taxonkit list --ids 11108,11103,11050 --show-name --indent "" gives the sub-tree for 11050 and 11103, but not 11108.
could you please help me with this problem?
The text was updated successfully, but these errors were encountered: