--- title: "Fitting genotype by environment models in lme4breeding" author: "Giovanny Covarrubias-Pazaran" date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{GxE models in lme4breeding} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- The purpose of this vignette is to show how to fit different genotype by environment (GxE) models using the lme4breeding package: 1) Multienvironment model: Main effect model 2) Multienvironment model: Diagonal model (DG) 3) Multienvironment model: Compund symmetry model (CS) 3.2) Multienvironment model: Compund symmetry model + Diagonal (CS+DG) 4) Multienvironment model: Unstructured model (US) 5) Multienvironment model: Random regression model (RR) 5.2) Multienvironment model: Finlay-Wilkinson regression 6) Multienvironment model: Factor analytic (reduced rank) model (FA) 7) Two stage analysis When the breeder decides to run a trial and apply selection in a single environment (whether because the amount of seed is a limitation or there's no availability for a location) the breeder takes the risk of selecting material for a target population of environments (TPEs) using an environment that is not representative of the larger TPE. Therefore, many breeding programs try to base their selection decision on multi-environment trial (MET) data. Models could be adjusted by adding additional information like spatial information, experimental design information, etc. In this tutorial we will focus mainly on the covariance structures for GxE and the incorporation of relationship matrices for the genotype effect. ## 1) MET: main effect model A multi-environment model is the one that is fitted when the breeding program can afford more than one location. The main effect model assumes that GxE doesn't exist and that the main genotype effect plus the fixed effect for environment is enough to predict the genotype effect in all locations of interest. ```{r} library(lme4breeding) data(DT_example) DT <- DT_example A <- A_example ansMain <- lmebreed(Yield ~ Env + (1|Name), relmat = list(Name = A ), data=DT) vc <- VarCorr(ansMain); print(vc,comp=c("Variance")) ``` In this model, the only term to be estimated is the one for the germplasm (here called `Name`). For the sake of example we have added a relationship matrix among the levels of the random effect `Name`. This is just a diagonal matrix with as many rows and columns as levels present in the random effect `Name`, but any other non-diagonal relationship matrix could be used. ## 2) MET: diagonal model (DG) A multi-environment model is the one that is fitted when the breeding program can afford more than one location. The diagonal model assumes that GxE exists and that the genotype variation is expressed differently at each location, therefore fitting a variance component for the genotype effect at each location. The main drawback is that this model assumes no covariance among locations, as if genotypes were independent (despite the fact that is the same genotypes). The fixed effect for environment plus the location-specific BLUP is used to predict the genotype effect in each locations of interest. ```{r} Z <- with(DT, smm(Env)) diagFormula <- paste0( "Yield ~ Env + (0+", paste(colnames(Z), collapse = "+"), "|| Name)") for(i in 1:ncol(Z)){DT[,colnames(Z)[i]] <- Z[,i]} print(as.formula(diagFormula)) ansDG <- lmebreed(as.formula(diagFormula), relmat = list(Name = A ), data=DT) vc <- VarCorr(ansDG); print(vc,comp=c("Variance")) ve <- attr(vc, "sc")^2; ve ``` ## 3) MET: compund symmetry model (CS) A multi-environment model is the one that is fitted when the breeding program can afford more than one location. The compound symmetry model assumes that GxE exists and that a main genotype variance-covariance component is expressed across all location. In addition, it assumes that a main genotype-by-environment variance is expressed across all locations. The main drawback is that the model assumes the same variance and covariance among locations. The fixed effect for environment plus the main effect for BLUP plus genotype-by-environment effect is used to predict the genotype effect in each location of interest. ```{r} DT$EnvName <- paste(DT$Env, DT$Name, sep = ":") E <- Matrix::Diagonal(length(unique(DT$Env))); colnames(E) <- rownames(E) <- unique(DT$Env);E EA <- Matrix::kronecker(E,A, make.dimnames = TRUE) ansCS <- lmebreed(Yield ~ Env + (1|Name) + (1|EnvName), relmat = list(Name = A, EnvName= EA ), data=DT) vc <- VarCorr(ansCS); print(vc,comp=c("Variance")) ve <- attr(vc, "sc")^2; ve ``` ### 3.2) MET: compund symmetry model + diagonal (CS+DG) A multi-environment model is the one that is fitted when the breeding program can afford more than one location. The compound symmetry model assumes that GxE exists and that a main genotype variance-covariance component is expressed across all location. In addition, it assumes that a main genotype-by-environment variance is expressed across all locations. The main drawback is that the model assumes the same variance and covariance among locations. The fixed effect for environment plus the main effect for BLUP plus genotype-by-environment effect is used to predict the genotype effect in each location of interest. ```{r} Z <- with(DT, smm(Env)) csdiagFormula <- paste0( "Yield ~ Env + (", paste(colnames(Z), collapse = "+"), "|| Name)") for(i in 1:ncol(Z)){DT[,colnames(Z)[i]] <- Z[,i]} print(as.formula(csdiagFormula)) ansCSDG <- lmebreed(as.formula(csdiagFormula), relmat = list(Name = A ), data=DT) vc <- VarCorr(ansCSDG); print(vc,comp=c("Variance")) ve <- attr(vc, "sc")^2; ve ``` ## 4) MET: unstructured model (US) A multi-environment model is the one that is fitted when the breeding program can afford more than one location. The unstructured model is the most flexible model assuming that GxE exists and that an environment-specific variance exists in addition to as many covariances for each environment-to-environment combinations. The main drawback is that is difficult to make this models converge because of the large number of variance components, the fact that some of these variance or covariance components are zero, and the difficulty in choosing good starting values. The fixed effect for environment plus the environment specific BLUP (adjusted by covariances) is used to predict the genotype effect in each location of interest. ```{r} Z <- with(DT, smm(Env)) usFormula <- paste0( "Yield ~ Env + (0+", paste(colnames(Z), collapse = "+"), "| Name)") for(i in 1:ncol(Z)){DT[,colnames(Z)[i]] <- Z[,i]} print(as.formula(usFormula)) ansDG <- lmebreed(as.formula(usFormula), relmat = list(Name = A ), data=DT) vc <- VarCorr(ansDG); print(vc,comp=c("Variance")) ve <- attr(vc, "sc")^2; ve ``` ## 5) MET: random regression model A multi-environment model is the one that is fitted when the breeding program can afford more than one location. The random regression model assumes that the environment can be seen as a continuous variable and therefore a variance component for the intercept and a variance component for the slope can be fitted. The number of variance components will depend on the order of the Legendre polynomial fitted. ```{r} # library(orthopolynom) # DT$EnvN <- as.numeric(as.factor(DT$Env)) # # Z <- with(DT, smm(leg(EnvN,1)) ) # rrFormula <- paste0( "Yield ~ Env + (0+", paste(colnames(Z), collapse = "+"), "| Name)") # for(i in 1:ncol(Z)){DT[,colnames(Z)[i]] <- Z[,i]} # ansRR <- lmebreed(as.formula(rrFormula), # relmat = list(Name = A ), # data=DT) # vc <- VarCorr(ansRR); print(vc,comp=c("Variance")) # ve <- attr(vc, "sc")^2; ve ``` In addition, we an fit this without covariance: ```{r} # library(orthopolynom) # DT$EnvN <- as.numeric(as.factor(DT$Env)) # Z <- with(DT, smm(leg(EnvN,1)) ) # rrFormula <- paste0( "Yield ~ Env + (0+", paste(colnames(Z), collapse = "+"), "|| Name)") # for(i in 1:ncol(Z)){DT[,colnames(Z)[i]] <- Z[,i]} # ansRR <- lmebreed(as.formula(rrFormula), # relmat = list(Name = A ), # data=DT) # vc <- VarCorr(ansRR); print(vc,comp=c("Variance")) # ve <- attr(vc, "sc")^2; ve ``` ### 5.2) Finlay-Wilkinson regression ```{r} data(DT_h2) DT <- DT_h2 ## build the environmental index ei <- aggregate(y~Env, data=DT,FUN=mean) colnames(ei)[2] <- "envIndex" ei$envIndex <- ei$envIndex - mean(ei$envIndex,na.rm=TRUE) # center the envIndex to have clean VCs ei <- ei[with(ei, order(envIndex)), ] ## add the environmental index to the original dataset DT2 <- merge(DT,ei, by="Env") DT2 <- DT2[with(DT2, order(Name)), ] ansFW <- lmebreed(y~ Env + (envIndex || Name), data=DT2) vc <- VarCorr(ansFW); print(vc,comp=c("Variance")) ve <- attr(vc, "sc")^2; ve ``` Alternatively, you can also add the covariance between both the main effect and the sensitivity ```{r} ansFW2 <- lmebreed(y~ Env + (envIndex | Name), data=DT2) vc <- VarCorr(ansFW2); print(vc,comp=c("Variance")) ve <- attr(vc, "sc")^2; ve ``` ## 6) Factor analytic (reduced rank) model When the number of environments where genotypes are evaluated is big and we want to consider the genetic covariance between environments and location-specific variance components we cannot fit an unstructured covariance in the model since the number of parameters is too big and the matrix can become non-full rank leading to singularities. In those cases is suggested a dimensionality reduction technique. Among those the factor analytic structures proposed by many research groups (Piepho, Smith, Cullis, Thompson, Meyer, etc.) are the way to go. lme4breeding has a reduced-rank factor analytic implementation available through the rrm() function. Here we show an example of how to fit the model: ```{r} # data(DT_h2) # DT <- DT_h2 # DT=DT[with(DT, order(Env)), ] # # # fit diagonal model first to produce H matrix # Z <- with(DT, smm(Env)) # diagFormula <- paste0( "y ~ Env + (0+", paste(colnames(Z), collapse = "+"), "|| Name)") # for(i in 1:ncol(Z)){DT[,colnames(Z)[i]] <- Z[,i]} # print(as.formula(diagFormula)) # ans1a <- lmebreed(as.formula(diagFormula), # data=DT) # vc <- VarCorr(ans1a); print(vc,comp=c("Variance")) # H0 <- ranef(ans1a)$Name # GxE table # # # reduced rank model # Z <- with(DT, rrm(Env, H = H0, nPC = 3)) # Zd <- with(DT, smm(Env)) # faFormula <- paste0( "y ~ Env + (0+", paste(colnames(Z), collapse = "+"), "| Name) + (0+",paste(colnames(Zd), collapse = "+"), "|| Name)") # for(i in 1:ncol(Z)){DT[,colnames(Z)[i]] <- Z[,i]} # print(as.formula(faFormula)) # ansFA <- lmebreed(as.formula(faFormula), # data=DT) # vc <- VarCorr(ansFA); print(vc,comp=c("Variance")) # ve <- attr(vc, "sc")^2; ve # # loadings=with(DT, rrm(Env, nPC = 3, H = H0, returnGamma = T) )$Gamma # Gint <- loadings %*% vc$Name %*% t(loadings) # Gspec <- diag( unlist(lapply(vc[2:16], function(x){x[[1]]})) ) # G <- Gint + Gspec # # lattice::levelplot(cov2cor(G)) # # colfunc <- colorRampPalette(c("steelblue4","springgreen","yellow")) # # hv <- heatmap(cov2cor(G), col = colfunc(100), symm = TRUE) # # u <- ranef(ansFA)$Name # uInter <- as.matrix(u[,1:3]) %*% t(as.matrix(loadings)) # uSpec <- as.matrix(u[,-c(1:3)]) # u <- uSpec + uInter ``` As can be seen genotype BLUPs for all environments can be recovered by multiplying the loadings (Gamma) by the factor scores. This is a parsomonious way to model an unstructured covariance. ## 7) Two stage analysis It is common then to fit a first model that accounts for the variation of random design elements, e.g., locations, years, blocks, and fixed genotype effects to obtain the estimated marginal means (EMMs) or best linear unbiased estimators (BLUEs) as adjusted entry means. These adjusted entry means are then used as the phenotype or response variable in GWAS and genomic prediction studies. ```{r} ########## ## stage 1 ########## data(DT_h2) DT <- DT_h2 head(DT) envs <- unique(DT$Env) vals <- list() for(i in 1:length(envs)){ ans1 <- lmebreed(y~Name + (1|Block), data= droplevels(DT[which(DT$Env == envs[i]),]) ) b <- fixef(ans1) b[2:length(b)] <- b[2:length(b)] + b[1] ids <- colnames(model.matrix(~Name-1, data=droplevels(DT[which(DT$Env == envs[i]),]) )) ids <- gsub("Name","",ids) vals[[i]] <- data.frame(Estimate=b , stdError= diag( vcov(ans1)), Effect= ids, Env= envs[i]) } DT2 <- do.call(rbind, vals) ########## ## stage 2 ########## DT2$w <- 1/DT2$stdError ans2 <- lmebreed(Estimate~Env + (1|Effect) + (1|Env:Effect), weights = w,data=DT2, control = lmerControl( # optimizer="bobyqa", check.nobs.vs.nlev = "ignore", check.nobs.vs.rankZ = "ignore", check.nobs.vs.nRE="ignore" ) ) vc <- VarCorr(ans2); print(vc,comp=c("Variance")) ve <- attr(vc, "sc")^2; ve ``` ## Literature Giovanny Covarrubias-Pazaran (2024). lme4breeding: enabling genetic evaluation in the age of genomic data. To be submitted to Bioinformatics. Bates Douglas, Maechler Martin, Bolker Ben, Walker Steve. 2015. Fitting Linear Mixed-Effects Models Using lme4. Journal of Statistical Software, 67(1), 1-48. Bernardo Rex. 2010. Breeding for quantitative traits in plants. Second edition. Stemma Press. 390 pp. Gilmour et al. 1995. Average Information REML: An efficient algorithm for variance parameter estimation in linear mixed models. Biometrics 51(4):1440-1450. Henderson C.R. 1975. Best Linear Unbiased Estimation and Prediction under a Selection Model. Biometrics vol. 31(2):423-447. Kang et al. 2008. Efficient control of population structure in model organism association mapping. Genetics 178:1709-1723. Lee, D.-J., Durban, M., and Eilers, P.H.C. (2013). Efficient two-dimensional smoothing with P-spline ANOVA mixed models and nested bases. Computational Statistics and Data Analysis, 61, 22 - 37. Lee et al. 2015. MTG2: An efficient algorithm for multivariate linear mixed model analysis based on genomic information. Cold Spring Harbor. doi: http://dx.doi.org/10.1101/027201. Maier et al. 2015. Joint analysis of psychiatric disorders increases accuracy of risk prediction for schizophrenia, bipolar disorder, and major depressive disorder. Am J Hum Genet; 96(2):283-294. Rodriguez-Alvarez, Maria Xose, et al. Correcting for spatial heterogeneity in plant breeding experiments with P-splines. Spatial Statistics 23 (2018): 52-71. Searle. 1993. Applying the EM algorithm to calculating ML and REML estimates of variance components. Paper invited for the 1993 American Statistical Association Meeting, San Francisco. Yu et al. 2006. A unified mixed-model method for association mapping that accounts for multiple levels of relatedness. Genetics 38:203-208. Tunnicliffe W. 1989. On the use of marginal likelihood in time series model estimation. JRSS 51(1):15-27.