numerics
Methods for numerics of two-locus diffusion: grids, transition matrices, etc.
LD_per_bin(ns)
Calculate LD statistics per bin for a TLSpectrum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ns
|
int
|
Number of samples. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
D |
TLSpectrum object
|
TLSpectrum object in which each entry is the value of D for that combination of haplotypes. |
r2 |
TLSpectrum object
|
TLSpectrum object in which each entry is the value of r^2 for that combination of haplotypes. |
Source code in dadi/TwoLocus/numerics.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |
advance1D(u, P)
Given transition matrix P, use dadi's triagonal solver to integrate in 1D.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
u
|
array - like
|
1D density function. |
required |
P
|
array - like
|
Transition matrix. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
u |
ndarray
|
Updated 1D density function. |
Source code in dadi/TwoLocus/numerics.py
1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 | |
advance_adi(phi, U01, P1, P2, P3, x, ii)
Combined ADI integration of phi.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
U01
|
array - like
|
Domain markers. |
required |
P1
|
array - like
|
ADI transition matrices for axis 1. |
required |
P2
|
array - like
|
ADI transition matrices for axis 2. |
required |
P3
|
array - like
|
ADI transition matrices for axis 3. |
required |
x
|
array - like
|
1D grid. |
required |
ii
|
int
|
Current iteration. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 | |
advance_adi1(phi, U01, P1, x)
ADI integration along axis 1 of phi.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
U01
|
array - like
|
Domain markers. |
required |
P1
|
array - like
|
ADI transition matrices. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 | |
advance_adi2(phi, U01, P2, x)
ADI integration along axis 2 of phi.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
U01
|
array - like
|
Domain markers. |
required |
P2
|
array - like
|
ADI transition matrices. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
advance_adi3(phi, U01, P3, x)
ADI integration along axis 3 of phi.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
U01
|
array - like
|
Domain markers. |
required |
P3
|
array - like
|
ADI transition matrices. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 | |
advance_cov(phi, C12, C13, C23, x, ii)
Combined integration for the covariance terms.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
C12
|
array - like
|
Transition matrices for axes 1 and 2. |
required |
C13
|
array - like
|
Transition matrices for axes 1 and 3. |
required |
C23
|
array - like
|
Transition matrices for axes 2 and 3. |
required |
x
|
array - like
|
1D grid. |
required |
ii
|
int
|
Current iteration. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 | |
advance_cov12(phi, C12, x)
Explicit integration of covariance term in the 1/2 axes planes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
C12
|
array - like
|
Transition matrices. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 | |
advance_cov13(phi, C13, x)
Explicit integration of covariance term in the 1/3 axes planes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
C13
|
array - like
|
Transition matrices. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 | |
advance_cov23(phi, C23, x)
Explicit integration of covariance term in the 2/3 axes planes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
C23
|
array - like
|
Transition matrices. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 | |
advance_surf_adi1(surf, U01surf, P1surf, x)
Advance the ADI method along first axis one of surface domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
surf
|
array - like
|
Density function along that surface. |
required |
U01surf
|
array - like
|
Domain markers along grid. |
required |
P1surf
|
array - like
|
ADI transition matrix. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
surf |
ndarray
|
Updated surface density function. |
Source code in dadi/TwoLocus/numerics.py
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 | |
advance_surf_adi2(surf, U01surf, P2surf, x)
Advance the ADI method along second axis one of surface domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
surf
|
array - like
|
Density function along that surface. |
required |
U01surf
|
array - like
|
Domain markers along grid. |
required |
P2surf
|
array - like
|
ADI transition matrix. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
surf |
ndarray
|
Updated surface density function. |
Source code in dadi/TwoLocus/numerics.py
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 | |
advance_surf_cov(surf, Csurf, x)
Explicit integration of the covariance term, using scipy's sparse matrix for Csurf.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
surf
|
array - like
|
Density function along the surface. |
required |
Csurf
|
lil_matrix
|
Transition matrix. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
surf |
ndarray
|
Updated surface density function. |
Source code in dadi/TwoLocus/numerics.py
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 | |
advance_surface(phi, x, P1surf, P2surf, Csurf, Pline, P, U01surf)
Advance the surface density function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Full density function. |
required |
x
|
array - like
|
1D grid. |
required |
P1surf
|
array - like
|
ADI transition matrices for triallele density function along axis 1. |
required |
P2surf
|
array - like
|
ADI transition matrices for triallele density function along axis 2. |
required |
Csurf
|
lil_matrix
|
Covariance transition matrix. |
required |
Pline
|
array - like
|
Transition matrix for diagonal boundary of triallele surface. |
required |
P
|
array - like
|
Amount of density to be moved from triallele domain (surf) to diagonal line boundary. |
required |
U01surf
|
array - like
|
Domain markers for the surface. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated full density function. |
Source code in dadi/TwoLocus/numerics.py
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 | |
array_to_spectrum(phi)
Convert an array to a TLSpectrum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Array to be converted. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
TLSpectrum
|
Converted TLSpectrum. |
Source code in dadi/TwoLocus/numerics.py
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 | |
binom(n, k)
Compute the binomial coefficient.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of trials. |
required |
k
|
int
|
Number of successes. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Binomial coefficient. |
Source code in dadi/TwoLocus/numerics.py
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 | |
cached_genotype_exact_projection(n, haplotype_counts)
Cache the probabilities of observing specific sets of genotypes for a given set of haplotype counts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of individuals. |
required |
haplotype_counts
|
tuple
|
Number of individuals with each haplotype. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
prob_cache |
dict
|
Dictionary of probabilities for each set of genotypes. |
Source code in dadi/TwoLocus/numerics.py
1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 | |
cached_projection(proj_to, proj_from, hits)
Coefficients for projection from a larger size to smaller.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
proj_to
|
int
|
Number of samples to project down to. |
required |
proj_from
|
int
|
Number of samples to project from. |
required |
hits
|
tuple
|
Number of derived alleles projecting from - tuple of (n1,n2,n3). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
proj_weights |
ndarray
|
Projection coefficients. |
Source code in dadi/TwoLocus/numerics.py
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 | |
condition(F, i)
Condition on seeing nA = i in a two-locus spectrum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F
|
TLSpectrum
|
Two-locus spectrum. |
required |
i
|
int
|
Number of derived alleles for the first locus. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Fcond |
ndarray
|
Conditioned two-locus spectrum. |
condition on seeing nA = i Fcond[i,j]: i - number AB, j - number of aB i ranges from 0 to i, j ranges from 0 to n-i
Source code in dadi/TwoLocus/numerics.py
2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 | |
domain(x)
Create an array indicating whether grid points lie inside the domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
U01 |
ndarray
|
Array with 1 for points inside the domain and 0 for points outside. |
Source code in dadi/TwoLocus/numerics.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |
domain_surf(x)
Constructs a matrix with the same dimension as the density function discretization, a 1 indicates that the corresponding point is inside the triangular domain or on the boundary, while a 0 indicates that point falls outside the domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
U01 |
ndarray
|
Domain markers for the surface. |
Source code in dadi/TwoLocus/numerics.py
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 | |
extrap_dt_pts(temps)
Extrapolate data points for different time steps and grid points.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
temps
|
dict
|
Dictionary of data points for different time steps and grid points. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ndarray |
ndarray
|
Extrapolated data points. |
Source code in dadi/TwoLocus/numerics.py
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 | |
fold_ancestral(F)
Fold an unfolded two-locus frequency spectrum (assume don't know ancestral state).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F
|
TLSpectrum
|
Unfolded two-locus frequency spectrum. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
F |
TLSpectrum
|
Folded two-locus frequency spectrum. |
Source code in dadi/TwoLocus/numerics.py
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 | |
fold_lr(F)
Fold an unfolded two-locus spectrum based on left/right allele.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F
|
TLSpectrum
|
Unfolded two-locus frequency spectrum. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
F |
TLSpectrum
|
Folded two-locus frequency spectrum. |
Source code in dadi/TwoLocus/numerics.py
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 | |
genotype_exp_data_to_arrays(G_exp, G_data)
Convert dictionaries of expected and observed genotype spectra to arrays.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
G_exp
|
dict
|
Dictionary of expected genotype spectra. |
required |
G_data
|
dict
|
Dictionary of observed genotype spectra. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
e |
array
|
Array of expected and observed genotype spectra. |
d |
array
|
Array of expected and observed genotype spectra. |
return 1D spectra, to perform likelihood calcs so given two dicts, one for genotype freq expectations, one for data, returns spectrum arrays of data that can be passed to inference methods
Source code in dadi/TwoLocus/numerics.py
2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 | |
genotype_spectrum_from_F(F)
Convert a two-locus spectrum to a genotype spectrum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F
|
TLSpectrum
|
Two-locus spectrum. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
G |
ndarray
|
Genotype spectrum. |
Source code in dadi/TwoLocus/numerics.py
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 | |
genotypes_prob_4(n, colors, hits)
Compute the probability of observing a specific set of genotypes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of individuals. |
required |
colors
|
tuple
|
Number of individuals with each haplotype. |
required |
hits
|
tuple
|
Number of individuals with each genotype. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Probability of observing the specific set of genotypes. |
Source code in dadi/TwoLocus/numerics.py
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 | |
grid(numpts)
Generate a default uniform grid where grid points lie directly on the boundaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
numpts
|
int
|
Number of grid points (less one). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ndarray |
ndarray
|
Uniform grid points. |
Source code in dadi/TwoLocus/numerics.py
37 38 39 40 41 42 43 44 45 46 47 | |
grid_dx(x)
Compute the 1D grid spacing for a given grid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ndarray |
ndarray
|
1D grid spacing. |
Source code in dadi/TwoLocus/numerics.py
49 50 51 52 53 54 55 56 57 58 59 | |
grid_dx3(x, dx)
Compute 3D grid spacing for integration weights.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DX |
ndarray
|
3D grid spacing. |
Source code in dadi/TwoLocus/numerics.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | |
grid_dx_2d(x, dx)
The two dimensional grid spacing over the domain. Grid points lie along the diagonal boundary, and Delta for those points is halved.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DXX |
ndarray
|
2D grid spacing. |
Source code in dadi/TwoLocus/numerics.py
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 | |
injectA(x, dx, dt, yB, phi, thetaA)
Inject new derived mutations A onto the background of B/b.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
dt
|
float
|
Integration time step. |
required |
yB
|
Spectrum
|
Biallelic frequency spectrum integrated by dadi. |
required |
phi
|
array - like
|
Density function. |
required |
thetaA
|
float
|
Scaled mutation rate. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | |
injectB(x, dx, dt, yA, phi, thetaB)
Inject new derived mutations B onto the background of A/a.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
dt
|
float
|
Integration time step. |
required |
yA
|
Spectrum
|
Biallelic frequency spectrum integrated by dadi. |
required |
phi
|
array - like
|
Density function. |
required |
thetaB
|
float
|
Scaled mutation rate. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | |
int2(DXX, U)
Integrate the density function over the domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
DXX
|
array - like
|
Two dimensional grid. |
required |
U
|
array - like
|
Density function. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Result of the integration. |
Source code in dadi/TwoLocus/numerics.py
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 | |
int3(DX, U)
Numerically integrate the density function over a 3D domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
DX
|
array - like
|
3D grid spacing for integration weights. |
required |
U
|
array - like
|
Density function. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Result of the integration. |
Source code in dadi/TwoLocus/numerics.py
94 95 96 97 98 99 100 101 102 103 104 105 | |
ln_binomial(n, k)
Compute the natural logarithm of the binomial coefficient.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of trials. |
required |
k
|
int
|
Number of successes. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Natural logarithm of the binomial coefficient. |
Source code in dadi/TwoLocus/numerics.py
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 | |
mean_r2(F)
Compute the mean r^2 value for a two-locus spectrum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F
|
TLSpectrum
|
Two-locus spectrum. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Mean r^2 value. |
Source code in dadi/TwoLocus/numerics.py
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 | |
misidentification(F, p)
Handle misidentification of ancestral state in a two-locus spectrum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F
|
TLSpectrum
|
Two-locus spectrum. |
required |
p
|
float
|
Probability of misidentification. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
TLSpectrum |
TLSpectrum
|
Updated two-locus spectrum with misidentification. |
with probability p, ancestral state is misidentified with prob p(1-p) A -> a but B correct with prob p(1-p) B -> b but A correct with prob p^2 A -> a and B -> b
Source code in dadi/TwoLocus/numerics.py
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 | |
misidentification_genotype_dict(G, p)
Handle misidentification of ancestral state in a dictionary of genotype spectra.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
G
|
dict
|
Dictionary of genotype spectra. |
required |
p
|
float
|
Probability of misidentification. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
G_new |
dict
|
Updated dictionary of genotype spectra with misidentification. |
same misidentification probabilities as misidentification(F,p) with prob p(1-p), AA -> aa, aa -> AA, Aa stays the same, B/b stay same with prob p(1-p),
Source code in dadi/TwoLocus/numerics.py
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 | |
move_density_to_surface(x, dx, dt, gammaA, gammaB, nu, hA=1.0 / 2, hB=1.0 / 2)
For each point in the full domain, compute how much should be lost to the nonsquare surface boundary due to diffusion/selection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
dt
|
float
|
Timestep of integration. |
required |
gammaA
|
float
|
Scaled selection coefficient for A. |
required |
gammaB
|
float
|
Scaled selection coefficient for B. |
required |
nu
|
float
|
Relative population size. |
required |
hA
|
float
|
Dominance coefficient for A. Defaults to 1./2. |
1.0 / 2
|
hB
|
float
|
Dominance coefficient for B. Defaults to 1./2. |
1.0 / 2
|
Returns:
| Name | Type | Description |
|---|---|---|
Psurf |
ndarray
|
Amount of density to be moved to the surface. |
Source code in dadi/TwoLocus/numerics.py
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 | |
move_surf_density_to_bdry(x, surf, P)
This is an absorbing boundary, so we'll just remove that density and not worry about integrating along that diagonal.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
surf
|
array - like
|
Surface density function. |
required |
P
|
array - like
|
Amount of density to be moved to the boundary. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
surf |
ndarray
|
Updated surface density function. |
Source code in dadi/TwoLocus/numerics.py
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 | |
move_surf_to_line(x, dx, dt, gammaA, gammaB, nu, hA=1.0 / 2, hB=1.0 / 2)
For each point in the full domain, compute how much should be lost to the nonsquare surface boundary due to diffusion/selection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
dt
|
float
|
Timestep of integration. |
required |
gammaA
|
float
|
Scaled selection coefficient for A. |
required |
gammaB
|
float
|
Scaled selection coefficient for B. |
required |
nu
|
float
|
Relative population size. |
required |
hA
|
float
|
Dominance coefficient for A. Defaults to 1./2. |
1.0 / 2
|
hB
|
float
|
Dominance coefficient for B. Defaults to 1./2. |
1.0 / 2
|
Returns:
| Name | Type | Description |
|---|---|---|
Psurf |
ndarray
|
Amount of density to be moved to the surface. |
Source code in dadi/TwoLocus/numerics.py
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 | |
multinomial(n, i, j, k)
Compute the multinomial coefficient.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of trials. |
required |
i
|
int
|
Number of successes for the first category. |
required |
j
|
int
|
Number of successes for the second category. |
required |
k
|
int
|
Number of successes for the third category. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Multinomial coefficient. |
Source code in dadi/TwoLocus/numerics.py
1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 | |
observed_genotype_spectrum_dict_from_F(F)
Convert a two-locus spectrum to a dictionary of observed genotype spectra.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F
|
TLSpectrum
|
Two-locus spectrum. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Gdict |
dict
|
Dictionary of observed genotype spectra. |
Gdict has keys n (num individuals in sample), observed genotypes
Source code in dadi/TwoLocus/numerics.py
1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 | |
observed_genotype_spectrum_from_F(F)
Convert a two-locus spectrum to an observed genotype spectrum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F
|
TLSpectrum
|
Two-locus spectrum. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
G |
ndarray
|
Observed genotype spectrum. |
Source code in dadi/TwoLocus/numerics.py
1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 | |
pairings(n)
Compute the number of pairings for n individuals.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of individuals. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Number of pairings. |
Source code in dadi/TwoLocus/numerics.py
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 | |
phi_to_surf(phi, x)
Map non-square to triallelic domain.
Note that many of the surface interaction methods could be cythonized for increase in speed. If x2 or x3 is lost, then only types AB and Ab or AB and aB are left, so either A or B have fixed, and that state is absorbing (no recombination can send you back to the interior). Thus, make sure that x2 lost or x3 lost is the diagonal boundary of the surface domain, so we don't have to worry about that density anymore. Here, we have x3 lost.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
surf |
ndarray
|
Surface density function. |
Source code in dadi/TwoLocus/numerics.py
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 | |
possible_genotypes_4(n, colors)
Generate all possible sets of genotypes for a given set of haplotype counts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of individuals. |
required |
colors
|
tuple
|
Number of individuals with each haplotype. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
gl |
list
|
List of all possible sets of genotypes. |
Source code in dadi/TwoLocus/numerics.py
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 | |
project(F_from, proj_to)
Project a two-locus spectrum to a smaller sample size.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
F_from
|
TLSpectrum
|
Two-locus spectrum to project from. |
required |
proj_to
|
int
|
Number of samples to project down to. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
TLSpectrum |
TLSpectrum
|
Projected two-locus spectrum. |
Source code in dadi/TwoLocus/numerics.py
1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 | |
project_Gdict(G, n_from, n_to)
Project a dictionary of genotype spectra to a smaller sample size.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
G
|
dict
|
Dictionary of genotype spectra. |
required |
n_from
|
int
|
Number of individuals in the original sample. |
required |
n_to
|
int
|
Number of individuals in the projected sample. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
G_to |
dict
|
Dictionary of projected genotype spectra. |
n_from and n_to are the individual counts, not haplotype counts (so ns/2)
Source code in dadi/TwoLocus/numerics.py
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 | |
projection_cache_Gdict(n_from, n_to, hits)
Cache the projection weights for genotype spectra.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_from
|
int
|
Number of individuals in the original sample. |
required |
n_to
|
int
|
Number of individuals in the projected sample. |
required |
hits
|
tuple
|
Number of individuals with each genotype in the original sample. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
weights_to |
dict
|
Dictionary of projection weights for each set of genotypes. |
Source code in dadi/TwoLocus/numerics.py
1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 | |
quadrinomial(ns, ii, jj, kk)
Compute the quadrinomial coefficient.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ns
|
int
|
Number of samples. |
required |
ii
|
int
|
Number of derived alleles for the first locus. |
required |
jj
|
int
|
Number of derived alleles for the second locus. |
required |
kk
|
int
|
Number of derived alleles for the third locus. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Quadrinomial coefficient. |
Source code in dadi/TwoLocus/numerics.py
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 | |
sample_cached(phi, ns, x)
Sample from the cached density function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
ns
|
int or tuple
|
Number of samples. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
F |
TLSpectrum
|
Sampled spectrum. |
Source code in dadi/TwoLocus/numerics.py
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 | |
surf_to_phi(surf, phi, x)
Move the surface density back to the full phi density function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
surf
|
array - like
|
Surface density function. |
required |
phi
|
array - like
|
Full density function. |
required |
x
|
array - like
|
1D grid. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated full density function. |
Source code in dadi/TwoLocus/numerics.py
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 | |
surface_interaction_b(phi, x, Psurf)
Handle surface interaction for boundary conditions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
x
|
array - like
|
1D grid. |
required |
Psurf
|
array - like
|
Amount of density to be moved to the surface. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 | |
surface_recombination(phi, x, rho, dt)
Handle recombination that pushes density from surface back into interior of domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
array - like
|
Density function. |
required |
x
|
array - like
|
1D grid. |
required |
rho
|
float
|
Recombination rate. |
required |
dt
|
float
|
Timestep of integration. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
phi |
ndarray
|
Updated density function. |
Source code in dadi/TwoLocus/numerics.py
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 | |
to_single_locus(phi)
Convert a two-locus spectrum to single-locus spectra.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
TLSpectrum
|
Two-locus spectrum. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
fsA |
Spectrum
|
Single-locus spectra. |
fsB |
Spectrum
|
Single-locus spectra. |
Source code in dadi/TwoLocus/numerics.py
1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 | |
transition12_surf(x, dx, U01)
Transition matrix for explicit integration of mixed derivative term along surface.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
U01
|
array - like
|
Surface domain marker. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
C |
ndarray
|
Transition matrix for mixed derivative term along surface. |
Source code in dadi/TwoLocus/numerics.py
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 | |
transition1_surf(x, dx, U01, gammaA, gammaB, rho, nu, hA=0.5, hB=0.5)
ADI transition matrix for x1 on surface.
See cythonized versions of these in the dadi/Triallele code.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
U01
|
array - like
|
Surface domain marker. |
required |
gammaA
|
float
|
Scaled selection coefficient for A. |
required |
gammaB
|
float
|
Scaled selection coefficient for B. |
required |
rho
|
float
|
Recombination rate. |
required |
nu
|
float
|
Relative population size. |
required |
hA
|
float
|
Dominance coefficient for A. Defaults to .5. |
0.5
|
hB
|
float
|
Dominance coefficient for B. Defaults to .5. |
0.5
|
Returns:
| Name | Type | Description |
|---|---|---|
P |
ndarray
|
ADI transition matrix for x1 on surface. |
Source code in dadi/TwoLocus/numerics.py
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 | |
transition2_surf(x, dx, U01, gammaA, gammaB, rho, nu, hA=0.5, hB=0.5)
ADI transition matrix for x2 on surface.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
array - like
|
1D grid. |
required |
dx
|
array - like
|
1D grid spacing. |
required |
U01
|
array - like
|
Surface domain marker. |
required |
gammaA
|
float
|
Scaled selection coefficient for A. |
required |
gammaB
|
float
|
Scaled selection coefficient for B. |
required |
rho
|
float
|
Recombination rate. |
required |
nu
|
float
|
Relative population size. |
required |
hA
|
float
|
Dominance coefficient for A. Defaults to .5. |
0.5
|
hB
|
float
|
Dominance coefficient for B. Defaults to .5. |
0.5
|
Returns:
| Name | Type | Description |
|---|---|---|
P |
ndarray
|
ADI transition matrix for x2 on surface. |
Source code in dadi/TwoLocus/numerics.py
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 | |