필터 지우기
필터 지우기

How to draw Phylogenetic Tree of large dataset

조회 수: 1 (최근 30일)
SUBHAJIT KAR
SUBHAJIT KAR 2021년 4월 3일
댓글: Star Strider 2021년 4월 5일
I want to draw a phylogenetic tree of a dataset comprising of 120 sequences. I have used plot(tree,'orient','left') command for this. The resulted phylogenetic tree is very much congested. It is impossible to access the result. The result is attached. Is there any way to clearly visualise the result?

채택된 답변

Star Strider
Star Strider 2021년 4월 3일
Experiment with this (after the figure has been generated):
pos = get(gcf,'Position');
set(gcf, 'Position',pos+[-500 -900 500 1000])
Make appropriate changes to get the result you want.
  댓글 수: 2
SUBHAJIT KAR
SUBHAJIT KAR 2021년 4월 5일
Thanks but the plot is still congested. Is there any alternative way?
Star Strider
Star Strider 2021년 4월 5일
As always, my pleasure!
The only way I can think of is to make it full-screen. There could be a way to do that programmatically, however experimenting with the 'OuterPosition' property as [0 0 1 1] that I though would do that, does not.
Instead, experiment with this:
set(gcf, 'OuterPosition',[0 0 2500 1400])
to get the result you want.
Another option is to experment with the 'FontSize' property if available, however since I cannot figure out that plot was created, I do not know if it has a 'FontSize' property that is possible to set.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Genomics and Next Generation Sequencing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by