-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdp_dayhoff.m
34 lines (31 loc) · 1.09 KB
/
dp_dayhoff.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
function [D]=dp_dayhoff(aln)
%DP_DAYHOFF - Dayhoff Distance
% Numbers of accepted point mutations (x10) accumulated from closely
% related sequences. Fifteen hundred and seventy-two exchanges are
% shown. Fractional exchanges result when ancestral sequences are
% ambiguous; the probabilities are distributed equally among all
% possibilities. The total number of exchanges tallied was 1,572.
% Note that 36 exchanges, of the 190 possible, were never observed.
% The Asp-Glu pair had the largest number of exchanges 83.1 (Adapted
% from Figure 80. Atlas of Protein Sequence and Structure, Suppl 3,
% 1978, M.O. Dayhoff, ed. National Biomedical Research Foundation,
% 1979.)
%
% Syntax: [D]=dp_dayhoff(aln)
%
% Inputs:
% aln - Alignment structure
%
% Outputs:
% D - Distance matrix
%
% See also:
% Molecular Biology and Evolution Toolbox (MBEToolbox)
% Author: James Cai
% Email: jcai@tamu.edu
% Website: http://bioinformatics.org/mbetoolbox/
%
% $LastChangedDate: 2013-01-05 12:04:29 -0600 (Sat, 05 Jan 2013) $
% $LastChangedRevision: 327 $
% $LastChangedBy: jcai $
[D]=protdist(aln,'dayhoff');