Back to Article
Pedigree-Based Prediction of Breeding Values
Download Source

Pedigree-Based Prediction of Breeding Values

Below is a dataset with a pedigree.

In [1]:
s_data_root <- "https://charlotte-ngs.github.io/lbgfs2024/data"
s_pbv_p03 <- file.path(s_data_root, "aural_exam_pbv_p03.csv")
tbl_pbv_p03 <- readr::read_delim(s_pbv_p03, 
                                 delim = ",", 
                                 show_col_types = FALSE)

The dataset shown as table

In [2]:
knitr::kable(tbl_pbv_p03)
id sire dam herd y
4 2 1 1 26.52
6 2 3 1 39.71
8 4 5 1 25.11
9 6 7 2 24.02
11 8 9 2 6.15
13 11 10 2 8.81
15 11 12 2 18.56
17 13 14 3 47.81
18 15 16 3 51.72
20 18 19 3 47.33
  1. Use the above shown dataset to predict breeding values for all animals in the pedigree using a BLUP animal model. Use ’herd‘ as fixed effect and compute estimates for all the levels of the fixed effect. The column entitled \(y\) contains the values for an observed trait of interest. Specify the model as mathematical formula and list the meaning of all model components. Write down the expected values and the variance-covariance matrices for all random effects in the model. Assume the phenotypic variance to be \(\sigma_p^2 = 64\) and the heritability to be \(h^2 = 0.16\).

  2. Compute the reliabilities for the predicted breeding values of all animals under Problem a.