Loading [MathJax]/jax/output/CommonHTML/jax.js
+ - 0:00:00
Notes for current slide
Notes for next slide

The breeder’s equation

Jinliang Yang

April 12, 2024

1 / 40

The improvement through breeding

2 / 40

The improvement through breeding

Response to selection

1. Why has a character changed over generations?

2. Can we predict a change?

Especially one that we wish for in a direction, through actions such as imposing artificial selection?

3 / 40

Response to selection

Change, or response ( R ), is given by the basic equation:

R=h2S

  • Here S is the selection differential

  • Is equal to the mean value of the selected parents ( μS ) minus the population mean ( μ ).


4 / 40

Response to selection

Change, or response ( R ), is given by the basic equation:

R=h2S

  • Here S is the selection differential

  • Is equal to the mean value of the selected parents ( μS ) minus the population mean ( μ ).


5 / 40

Response to selection

Change, or response ( R ), is given by the basic equation:

R=h2S

  • Here S is the selection differential

  • Is equal to the mean value of the selected parents ( μS ) minus the population mean ( μ ).


The regression of offspring on mid-parent is equal to the heritability

  • No non-genetic cause of resemblance
  • No natural selection, i.e. same fertility and viability
6 / 40

Response to selection

Change, or response ( R ), is given by the basic equation:

R=h2S

  • Here S is the selection differential

  • Is equal to the mean value of the selected parents ( μS ) minus the population mean ( μ ).


The regression of offspring on mid-parent is equal to the heritability

  • No non-genetic cause of resemblance
  • No natural selection, i.e. same fertility and viability

Therefore,

R=bOˉPSR=h2S

7 / 40

Response to selection

Change, or response ( R ), is given by the basic equation:

R=h2S

Here S is the selection differential, which is equal to the mean value of the selected parents ( μS ) minus the population mean ( μ ).


Improve the body weight

  1. Base population ( N=100 ) mean = 1,000g

  2. Selected 5 chicken as the parents, with mean =1,050g.

What is S?

8 / 40

Response to selection

Change, or response ( R ), is given by the basic equation:

R=h2S

Here S is the selection differential, which is equal to the mean value of the selected parents ( μS ) minus the population mean ( μ ).


Improve the body weight

  1. Base population ( N=100 ) mean = 1,000g

  2. Selected 5 chicken as the parents, with mean =1,050g.

If bOP = 0.25.

What is R?

9 / 40

Standardized selection differential

With the assumption that the phenotypic distributions are normal.

  • Same S means different selection pressure if the variances of the normal distributions are different
10 / 40

Standardized selection differential

With the assumption that the phenotypic distributions are normal.

  • Same S means different selection pressure if the variances of the normal distributions are different

Selection differential in standard deviation units:

SσP

11 / 40

Standardized selection differential

With the assumption that the phenotypic distributions are normal.

  • Same S means different selection pressure if the variances of the normal distributions are different

Selection differential in standard deviation units:

SσP

Intensity of selection ( i )

i=SσP

  • i is the "standarized selection differential"

  • it better reflects the selection effort

12 / 40

Intensity of selection ( i )

  • With the assumption that the phenotypic distributions are normal.

  • And standardize the selection differential: i=SσP

curve(dnorm(x,0,1), xlim=c(-3,3), xaxt="n", xlab="Trait Value", main="", ylab="Density", lwd=3)
fromd <- qnorm(.95); tod <- 3
S.x <- c(fromd, seq(fromd, tod, 0.01), tod)
S.y <- c(0, dnorm(seq(fromd, tod, 0.01)), 0)
polygon(S.x,S.y, col="grey")
abline(v=mean(S.x**S.y)*2, col="blue", lwd=3); abline(v=0, col="red", lwd=3)

13 / 40

Intensity of selection ( i )

i=SσP

  • If p is the proportion selected, i.e. the proportion of the population falling beyond the point of truncation.

  • And z is the height of the ordinate at the point of truncation.

i=zp

curve(dnorm(x,0,1), xlim=c(-3,3), xaxt="n", xlab="Trait Value", main="", ylab="Density", lwd=3)
fromd <- qnorm(.95); tod <- 3
S.x <- c(fromd, seq(fromd, tod, 0.01), tod)
S.y <- c(0, dnorm(seq(fromd, tod, 0.01)), 0)
polygon(S.x,S.y, col="grey")
abline(v=mean(S.x**S.y)*2, col="blue", lwd=3);
abline(v=0, col="red", lwd=3)

14 / 40

Intensity of selection ( i )

A table of these values is found in Appendix A of the F&M book.

ifun <- function(p=0.5){
x=qnorm(p=(1-p)) # get the truncation point
z=dnorm(x) # get z
return(z/p) # get i
}
p <- seq(0.005, 1, by=0.005)
i <- ifun(p)
plot(p, i)

head(data.frame(p, i), 20)
## p i
## 1 0.005 2.891949
## 2 0.010 2.665214
## 3 0.015 2.524695
## 4 0.020 2.420907
## 5 0.025 2.337803
## 6 0.030 2.268065
## 7 0.035 2.207716
## 8 0.040 2.154344
## 9 0.045 2.106373
## 10 0.050 2.062713
## 11 0.055 2.022578
## 12 0.060 1.985383
## 13 0.065 1.950678
## 14 0.070 1.918113
## 15 0.075 1.887406
## 16 0.080 1.858328
## 17 0.085 1.830692
## 18 0.090 1.804340
## 19 0.095 1.779142
## 20 0.100 1.754983
15 / 40

Breeder's equation

Given: R=h2SS=iσP

16 / 40

Breeder's equation

Given: R=h2SS=iσP

So now, we have, as a prediction:

R=h2iσP

where i=zp.

17 / 40

Breeder's equation

R=h2iσPi=zp

Genders

With differential selection opportunities between genders in sexual reproduction, we need to account for this in our predictions:

i=12(im+if)

18 / 40

Breeder's equation

R=h2iσPi=zp

Genders

With differential selection opportunities between genders in sexual reproduction, we need to account for this in our predictions:

i=12(im+if)

Generation interval

Generation interval ( L ) is the "average age of the parents at the birth of their selected offspring".

  • it is when they effectively leave the next generation that is then sampled to repeat the selection process.

L=12(Lm+Lf)

19 / 40

Breeder's equation

Now, on a time-constant basis to allow comparisons of alternatives:

R=iLh2σP=im+ifLm+Lfh2σP

With the h2 and σP terms possibly constant, we can simply compare the iL portions under different scenarios of selection and reproduction.

20 / 40

Example: selection for body weight

A poultry breeder is selecting for 56-day body weight in chicken.

  • Base population: a random mating population of 154 males and 155 females. Mean value = 1,000g; sd = 50g.

  • Selection scheme: 8 males and 48 females with the highest body weight to found the next generation.

  • h2: from previous parent-offspring regression and half-sib analysis, h2=0.45.
21 / 40

Example: selection for body weight

A poultry breeder is selecting for 56-day body weight in chicken.

  • Base population: a random mating population of 154 males and 155 females. Mean value = 1,000g; sd = 50g.

  • Selection scheme: 8 males and 48 females with the highest body weight to found the next generation.

  • h2: from previous parent-offspring regression and half-sib analysis, h2=0.45.

What is the predicted response to selection in next generation?

R=im+if2h2σP

22 / 40

Example: selection for body weight

A poultry breeder is selecting for 56-day body weight in chicken.

  • Base population: a random mating population of 154 males and 155 females. Mean value = 1,000g; sd = 50g.

  • Selection scheme: 8 males and 48 females with the highest body weight to found the next generation.

  • h2: from previous parent-offspring regression and half-sib analysis, h2=0.45.

What is the predicted response to selection in next generation?

R=im+if2h2σP

i_m <- ifun(p= 8/154) #2.05
i_f <- ifun(p= 48/155) # 1.14
(i_m + i_f)/2*0.45*50
## [1] 35.8358
23 / 40

Example: selection for body weight in chicken

A poultry breeder is selecting for 56-day body weight in chicken.

  • Base population: a random mating population of 154 males and 155 females. Mean value = 1,000g; sd = 50g.

  • Selection scheme: 8 males and 48 females with the highest body weight to found the next generation.

  • h2: from previous parent-offspring regression and half-sib analysis, h2=0.45.

What is the selection differential for the male and female?

S=iσP

24 / 40

Example: selection for body weight in chicken

A poultry breeder is selecting for 56-day body weight in chicken.

  • Base population: a random mating population of 154 males and 155 females. Mean value = 1,000g; sd = 50g.

  • Selection scheme: 8 males and 48 females with the highest body weight to found the next generation.

  • h2: from previous parent-offspring regression and half-sib analysis, h2=0.45.

What is the selection differential for the male and female?

S=iσP

Sm <- i_m*50 #102
Sf <- i_f*50 # 57
25 / 40

Example: selection for body weight in chicken

A poultry breeder is selecting for 56-day body weight in chicken.

  • Base population: a random mating population of 154 males and 155 females. Mean value = 1,000g; sd = 50g.

  • Selection scheme: 8 males and 48 females with the highest body weight to found the next generation.

  • h2: from previous parent-offspring regression and half-sib analysis, h2=0.45.

What is the selection differential for the male and female?

S=iσP

Sm <- i_m*50 #102
Sf <- i_f*50 # 57

Why response 36g not equal to average value of the Sm and Sf?

26 / 40

Example: selection for body weight

  • Sm=102 and Sf=57 are the means of the selected parents
  • R=36 is the mean of the offspring.
27 / 40

Example: selection for body weight

  • Sm=102 and Sf=57 are the means of the selected parents
  • R=36 is the mean of the offspring.

Not equal because the heritability is less than one, which means that the phenotypes of the parents was less than a perfect indictor of their breeding values.

28 / 40

Improvement of response

R=ih2σPL

The form of the breeder's equation allows us to clearly see how to maximize response to selection per unit of time.

29 / 40

Improvement of response

R=ih2σPL

The form of the breeder's equation allows us to clearly see how to maximize response to selection per unit of time.

1. Reduce the generation interval

This factor is bound by the biology of the organisms, but ways to reduce the generation interval are possible.

30 / 40

Improvement of response

R=ih2σPL

The form of the breeder's equation allows us to clearly see how to maximize response to selection per unit of time.

1. Reduce the generation interval

This factor is bound by the biology of the organisms, but ways to reduce the generation interval are possible.

  • Selection during the off-season in plants

    • winter nursery
    • speed breeding (Watson et al., 2018), up to 6 six generations per year
31 / 40

Improvement of response

R=ih2σPL

The form of the breeder's equation allows us to clearly see how to maximize response to selection per unit of time.

1. Reduce the generation interval

This factor is bound by the biology of the organisms, but ways to reduce the generation interval are possible.

  • Selection during the off-season in plants

    • winter nursery
    • speed breeding (Watson et al., 2018), up to 6 six generations per year
  • Genomic selection

    • Selection without phenotyping
32 / 40

Improvement of response

R=ih2σPL

2. Increase the heritability of the trait

Depends on the genetic architecture, not always under the control of the breeder.

33 / 40

Improvement of response

R=ih2σPL

2. Increase the heritability of the trait

Depends on the genetic architecture, not always under the control of the breeder.

  • Maximizing the repeatability of trait evaluation.

  • Sound measurement methods and proper experimental design

34 / 40

Improvement of response

R=ih2σPL

3. Increase the selection intensity

  • Reduce the number of individuals selected to serve as parents of the next generation
35 / 40

Improvement of response

R=ih2σPL

3. Increase the selection intensity

  • Reduce the number of individuals selected to serve as parents of the next generation

    • Be cautious: increase the inbreeding coefficient and hence loss of alleles through genetic drift.

    • Increase i is likely not the most efficient path! i.e. p from 10% to 5% => i from 1.755 to 2.063.

36 / 40

Improvement of response

R=ih2σPL

3. Increase the selection intensity

  • Reduce the number of individuals selected to serve as parents of the next generation

    • Be cautious: increase the inbreeding coefficient and hence loss of alleles through genetic drift.

    • Increase i is likely not the most efficient path! i.e. p from 10% to 5% => i from 1.755 to 2.063.

  • Increase the population size from which selections are made
37 / 40

Improvement of response

R=ih2σPL

4. Increase additive genetic variance

h2=σ2Aσ2P;h=σAσP

38 / 40

Improvement of response

R=ih2σPL

4. Increase additive genetic variance

h2=σ2Aσ2P;h=σAσP

R=ihσA/L

39 / 40

Improvement of response

R=ih2σPL

4. Increase additive genetic variance

h2=σ2Aσ2P;h=σAσP

R=ihσA/L

  • The breeding population needs to contain adequate additive genetic variation for the trait of interest.

  • If no difference in breeding values exist between individuals within the population, genetic gain through selection is not possible.

40 / 40

The improvement through breeding

2 / 40
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow