I'm trying to draw trees using teh Biopython Phylo module.
The trees are OK, but the fonts are huge. How can I make them smaller? I tried something like this but its not working:
tree = Phylo.read(seqtreefile, "newick")
tree.rooted = True
tree = tree.as_phyloxml()
Phylo.draw_graphviz(tree, fontsize='6')
pylab.savefig(os.path.join(outpath,'%s.sequences.png'%model))
(Edited to mark the Python example as code)
indeed the docs are a bit confusing on the underscores