I have created a phylogenetic tree of a bunch on enzyme sequences I have. I have it in a simple format with only scores displayed and no coloring. Now the sequences I have are Restriction enzymes and each of them have a motif
. I want to color the enzyme branches having similar motifs
. I spent the better part of yesterday looking at different softwares that could help me do this but ended up confused. I wanted to know a good tool that takes trees either in the newick
format or takes in alignment
information. and will allow me to impart color based on similar motifs.
I came across this tool : http://etetoolkit.org/ , but it requires a large number of dependent libraries which in turn have dependencies with little or no documentation of installation errors.
I used the Phylo
class from the BioPython
library to develop the trees. I used the following command to generate my tree with the scores:
Phylo.draw(tree,branch_labels=lambda c: c.branch_length)