Skip to content

Commit 005c200

Browse files
committed
Update linear-marker-selection-indices.Rmd
1 parent b72e54b commit 005c200

1 file changed

Lines changed: 49 additions & 2 deletions

File tree

vignettes/linear-marker-selection-indices.Rmd

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ library(MASS)
8585
marker_scores <- matrix(0, nrow = nrow(phen_mat), ncol = ncol(phen_mat))
8686
colnames(marker_scores) <- colnames(phen_mat)
8787
88-
for (i in 1:ncol(phen_mat)) {
88+
for (i in seq_len(ncol(phen_mat))) {
8989
# Fit ridge regression to handle multicollinearity among markers
9090
# Note: A lambda must be chosen carefully in real scenarios
9191
fit <- lm.ridge(phen_mat[, i] ~ marker_mat, lambda = 10)
@@ -156,6 +156,53 @@ print(gw_lmsi_res$summary)
156156

157157
The GW-LMSI automatically models all the molecular variance in one step. While it requires computationally heavier matrix inversion (often mitigated by regularization), it tends to predict the net genetic merit more efficiently than standard LMSI when trait heritability is very low or when capturing many small QTL regressions requires immense sample sizes.
158158

159+
## 3. Advanced Concepts and Limitations
160+
161+
### 3.1 Basic Conditions for Constructing the LMSI
162+
163+
According to Lande and Thompson (1990), applying the LMSI correctly requires several primary statistical and biological conditions to be met in the breeding population:
164+
165+
1. **Linkage Disequilibrium:** The markers and the quantitative trait loci (QTL) must be in linkage disequilibrium (LD).
166+
2. **Additivity:** QTL effects should be combined additively both within and between loci (no epistasis).
167+
3. **Coupling Mode:** The QTL should be in coupling mode where parental lines hold uniformly positive or negative alleles.
168+
4. **Genetic Architecture:** Traits should be affected by a few QTLs with large effects rather than exclusively by many small-effect QTLs.
169+
5. **Heritability:** The traits must inherently have a low heritability ($h^2$). If heritabilities are high, phenotypic selection alone is immensely effective.
170+
6. **Marker Identification:** Markers correlated with the traits of interest must first be successfully identified.
171+
172+
### 3.2 The "LMSI Paradox" and Efficiency Comparisons
173+
174+
Will a linear marker selection index always dramatically outperform standard phenotypic selection? Not necessarily.
175+
176+
Lande and Thompson (1990) showed that LMSI efficiency relative to basic phenotypic selection ($\lambda_M$) for a single trait is:
177+
178+
$$ \lambda_M=\frac{R_M}{R}=\sqrt{\frac{q}{h^2}+\frac{{\left(1-q\right)}^2}{1-{qh}^2}} $$
179+
180+
Where $q = \frac{\sigma_s^2}{\sigma_g^2}$ is the proportion of additive genetic variance definitively explained by the markers, and $h^2$ is the trait heritability.
181+
182+
This equation demonstrates the **"LMSI Paradox"** mathematically defined by Knapp (1998): as $h^2$ trends toward zero, $\lambda_M$ approaches infinity. Thus, the massive relative advantage of marker-assisted selection over phenotypic selection occurs explicitly when phenotypic trait heritability is extremely low, and the markers successfully capture a massive fraction of genetic variance. Otherwise, the LMSI offers diminishing returns and can fix QTLs at an overly fast rate.
183+
184+
### 3.3 Statistical Properties of Molecular Indices
185+
186+
Assuming $H$ and the index $I_M$ share a bivariate joint normal distribution, the statistical properties mirror the standard phenotypic LPSI:
187+
188+
1. The variance of the index equals the covariance between the net genetic merit and the index: $\sigma_{I_M}^2=\sigma_{HI_M}$.
189+
2. The maximized correlation (Accuracy) is $\rho_{HI_M}=\frac{\sigma_{I_M}}{\sigma_H}$.
190+
3. The Variance of the Predicted Error $Var\left(H-{I}_M\right)=\left(1-{\rho}_{HI_M}^2\right){\sigma}_H^2$ is uniquely minimized.
191+
192+
Because molecular indices incorporate *both* the phenotypic and genotypic marker data, the LMSI accuracy will technically always be higher than the standard LPSI accuracy.
193+
194+
### 3.4 Advanced Matrix Estimation Methods
195+
196+
While the `gw_lmsi()` and `lmsi()` functions in the `selection.index` package abstract away the underlying algebra, molecular index computation routinely suffers from the $p \gg n$ covariance problem (vastly more markers than recorded individuals).
197+
198+
Estimating the marker score variances ($\mathbf{S}$) and the massive $\mathbf{M}$ and $\mathbf{W}$ covariance matrices using least-squares often leads to:
199+
1. Marker covariance values erroneously overestimating the true genetic covariance ($\mathbf{C}$).
200+
2. Singular, non-positive definite matrices where classical inverses fail.
201+
202+
The standard solution involves regularization techniques (like the Ridge penalty `lambda` built into `gw_lmsi()`), ensuring matrix invertibility at the cost of slight coefficient bias.
203+
159204
## Conclusion
160205

161-
The `selection.index` package extends base index selection directly into the molecular realm. The **LMSI** (`lmsi()`) allows breeders to leverage an established pre-calculated marker scorings regression model. The **GW-LMSI** (`gw_lmsi()`) embraces the Genomic Selection paradigm by swallowing all marker and phenotypic data jointly in a single predictive framework, utilizing ridge regularization to bypass classical $p \gg n$ multicollinearity obstacles.
206+
The `selection.index` package extends base index selection directly into the molecular realm. The **LMSI** (`lmsi()`) allows breeders to leverage an established pre-calculated marker scorings regression model. The **GW-LMSI** (`gw_lmsi()`) embraces the Genomic Selection paradigm by swallowing all marker and phenotypic data jointly in a single predictive framework, utilizing ridge regularization to bypass classical $p \gg n$ multicollinearity obstacles.
207+
208+
When implemented on traits exhibiting low heritability, these marker-assisted pipelines can drastically outcompete standard phenotypic indices in maximizing Expected Genetic Gain per selection cycle.

0 commit comments

Comments
 (0)