How to write code to implement, UPGMA, WPGMA, and neighbor joining algorithms
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!