How to write code to implement, UPGMA, WPGMA, and neighbor joining algorithms
16 views (last 30 days)
Show older comments
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 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!