-
Dear Chris and Gregor, I am running a simulation that aims to mimic a beef cattle breeding program under additive + dominance effects. To preliminarily test the whole simulation I first simulated only 1 trait with additive effects (no dominance). I have two questions related to true genetic values in AlphaSimR: -In the preliminary analyzes I made an estimate of bias (both estimated and true) and I suspect that there may be some scaling (or means) problem between the EBVs and the TBVs (pop@gv); Is this possible? Should I do some kind of weighting or correction to the true genetic values?. The simple model I used in blupf90 is: y = overral mean + a + e. -Depending on the answer above, I'd like to get a thought from you about the A+D scenario. Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
@alanmaxsp one thing to note is that in AlphaSimR gv contain the base population trait mean (you are adding this when you are specifying the trait). Is that the “offset” that you might be alluding too? Also note that GV are genetic values, not breeding values, but of course under additive these are the same in the first generation. Going onwards with generations AlphaSimR returns breeding values as they are defined (deviations from the population at hand) and as such cannot be compared between population objects - unless you merge the objects) - many animal breeders will be confused by this, hence I am highlighting it. Happy to say more. |
Beta Was this translation helpful? Give feedback.
-
Hi Alan, What you need here is the average effect of an allele substitution ( You can then calculate the breeding values for the other population by extracting its QTL genotypes and subtracting
|
Beta Was this translation helpful? Give feedback.
Hi Alan,
What you need here is the average effect of an allele substitution (
alpha
), so that you can reconstruct the breeding values manually. The most common formula provided in textbooks makes the assumption of Hardy-Weinberg equilibrium (HWE):alpha = a + d * (q - p)
. Wherea
is the additive effect,d
is the dominance effect,p
is the frequency of the 1 allele, andq
is the frequency of the 0 allele. Without assuming HWE, the formula isalpha = a + d * (q - p) * (1 - F) / (1 + F)
. WhereF
is the coefficient of inbreeding. You'll need this second formula to reconstruct the value used by AlphaSimR.You can then calculate the breeding values for the other population by extracting its QTL …