Add phylogenetic tree plot
This commit is contained in:
parent
e7e31798e9
commit
6371ed0086
|
@ -0,0 +1,8 @@
|
||||||
|
from Bio import Phylo
|
||||||
|
|
||||||
|
import matplotlib.pyplot as plt
|
||||||
|
|
||||||
|
tree = Phylo.read("./results/phyliptree.phy", "newick")
|
||||||
|
tree.ladderize()
|
||||||
|
Phylo.draw(tree)
|
||||||
|
|
Loading…
Reference in New Issue