Add phylogenetic tree plot

This commit is contained in:
Samuel Ortion 2025-01-18 15:52:50 +01:00
parent e7e31798e9
commit 6371ed0086
Signed by: sortion
GPG Key ID: 9B02406F8C4FB765
1 changed files with 8 additions and 0 deletions

View File

@ -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)