getGenCov: Pairwise Genetic Covariance

View source: R/getGenCov.R

8. Computing Genetic CovariancesR Documentation

Pairwise Genetic Covariance

Description

Pairwise genetic covariances for variables with the same experimental design

Usage

getGenCov(y, X = NULL, Z = NULL, K = NULL,
          U = NULL, d = NULL, scale = TRUE,
          pairwise=FALSE, verbose = TRUE, ...)
          

Arguments

y

(numeric matrix) Response variable matrix. It should contain more than one column

X

(numeric matrix) Design matrix for fixed effects. When X=NULL a vector of ones is constructed only for the intercept (default)

Z

(numeric matrix) Design matrix for random effects. When Z=NULL an identity matrix is considered (default) thus G = K; otherwise G = Z K Z' is used

K

(numeric matrix) Kinship relationship matrix

U

(numeric matrix) Eigenvectors from spectral value decomposition of G = U D U'

d

(numeric vector) Eigenvalues from spectral value decomposition of G = U D U'

scale

TRUE or FALSE to scale each column of y by their corresponding standard deviations so the resulting variables will have unit variance

pairwise

TRUE or FALSE to calculate pairwise genetic covariances for all columns in y. When pairwise=FALSE (default) covariances of the first column in y with the remaining columns (2,...,ncol(y)) are calculated

verbose

TRUE or FALSE to whether show progress

...

Other arguments passed to the function 'fitBLUP'

Details

Assumes that both y1 and y2 follow the basic linear mixed model that relates phenotypes with genetic values of the form

y1 = X b1 + Z u1 + e1
y2 = X b2 + Z u2 + e2

where b1 and b2 are the specific fixed effects, u1 and u2 are the specific genetic values of the genotypes, e1 and e2 are the vectors of specific environmental residuals, and X and Z are common design matrices conecting the fixed and genetic effects with replicates. Genetic values are assumed to follow a Normal distribution as u1 ~ N(02u1K) and u2 ~ N(02u2K), and environmental terms are assumed e1 ~ N(02e1I) and e2 ~ N(02e2I).

The genetic covariance σ2u1,u2 is estimated from the formula for the variance for the sum of two variables as

σ2u1,u2 = 1/2(σ2u3 - σ2u1 - σ2u2)

where σ2u3 is the genetic variance of the variable y3 = y1 + y2 that also follows the same model as for y1 and y2.

Likewise, the environmental covariance σ2e1,e2 is estimated as

σ2e1,e2 = 1/2(σ2e3 - σ2e1 - σ2e2)

where σ2e3 is the error variance of the variable y3.

Solutions are found using the function 'fitBLUP' (see help(fitBLUP)) to sequentialy fit mixed models for all the variables y1, y2 and y3.

Value

Returns a list object that contains the elements:

  • varU: (vector) genetic variances.

  • varE: (vector) error variances.

  • covU: (vector) genetic covariances between response variable 1 and the rest.

  • covE: (vector) environmental covariances between response variable 1 and the rest.

When pairwise=TRUE, varU and varE are matrices containing all variances (diagonal) and pairwise covariances (off diagonal)

Examples

  require(SFSI)
  data(wheatHTP)
  
  index = which(Y$trial %in% 1:8)     # Use only a subset of data
  Y = Y[index,]
  M = scale(M[index,])/sqrt(ncol(M))  # Subset and scale markers
  G = tcrossprod(M)                   # Genomic relationship matrix
  y = scale(Y[,4:7])                  # Response variable
  
  # Covariances between the first and the rest: y[,1] and y[,2:4]
  fm = getGenCov(y=y, K=G)
  fm$varU           # Genetic variances
  fm$varE           # Residual variances
  fm$covU           # Genetic covariance between y[,1] and y[,2:4]
  fm$covU+fm$covE   # Phenotypic covariance
  cov(y)[1,-1]      # Sample phenotypic covariance
  
  # Pairwise covariance for all columns in y
  fm = getGenCov(y=y, K=G, pairwise=TRUE)
  fm$varU 
  fm$varE

SFSI documentation built on Nov. 18, 2023, 9:06 a.m.