how to visualize alignment tree .dnd done with t coffee

问题描述 投票:0回答:0

我在 R 中尝试了 2 个解释包,但输出是相同的:Null device 1

我在与我的 resul.dnd 相同的目录中工作

install.packages("ape")
library(ape)
MyTree <- read.tree("result.dnd")
png("result.png")
plot(MyTree)
dev.off()

install.packages("phytools")
library(phytools)
MyTree <- read.newick("result.dnd")
png("results.png")
plot(MyTree)
dev.off()
r tree bioinformatics
© www.soinside.com 2019 - 2024. All rights reserved.