Open biofilos opened 6 years ago
If I change my environment from anaconda (which I used for the example above) to virtualenv (Python 3.6.4), the image is generated, but the svg is still rendered as a bitmap
Yes, that's a limitation of the SVG redering options in Qt. I am not sure if there is any easy way to solve it...
On 16 April 2018 at 02:04, Juan Felipe Ortiz notifications@github.com wrote:
If I change my environment from anaconda (which I used for the example above) to virtualenv (Python 3.6.4), the image is generated, but the svg is still rendered as a bitmap
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/etetoolkit/ete/issues/346#issuecomment-381448932, or mute the thread https://github.com/notifications/unsubscribe-auth/AAJ_SmASzlK8MR7GI24i27tF4aDeNNUdks5to-AqgaJpZM4TVs-W .
Hi Guys,
I am having the same issue. I'm working with anaconda 4.3 on Windows 10. Switching to a virtual env based on python 3.6.4 as the original poster suggests did not fix my issue.:
TypeError Traceback (most recent call last)
I have now also tested the SVGFace function on my virtual machine running Ubuntu - with the same results. SVG rendering is a great additon to the ete3 framework and would be useful to me so I hope we can find a solution to this problem. Thanks for your help.
I am trying to replicate the procedure posted here (https://groups.google.com/forum/#!topic/etetoolkit/rPNdMWzCirk), but I get the error ` from ete3 import Tree, SVGFace t = Tree("((A, B), (C, D));") f = SVGFace("svg.svg", width=10) f2 = SVGFace("svg.svg", height=10) f3 = SVGFace("svg.svg", height=20, width=10)
(t&"A").add_face(f, 1, 'branch-right') (t&"C").add_face(f2, 1, 'branch-right') t.add_face(f3, 0, 'branch-top') t.show()
--------------------------------------------------------------------------- TypeError Traceback (most recent call last)