How to write code to implement, UPGMA, WPGMA, and neighbor joining algorithms
16 次查看(过去 30 天)
显示 更早的评论
How to implement, UPGMA, WPGMA, and neighbor joining algorithms?? I have this seq data:
data = {'A' 'ACTGGGCT'
'B' 'CGTGAGCT'
'C' 'ACTGTGCT'
'D' 'ACTGTGAT'}
and this the distance matrix of pairwise alignment of these seqs:
>> distances=[0 17.6 22.7 15.9; 17.6 0 18 13.8; 22.7 18 0 21.4; 15.9 13.8 21.4 0]
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!