We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the paper and implementation you add noise to the genetic component of the phenotype to reach a desired heritability using:
g' = h * g + sqrt(1-h^2) N(0, 1), where h = heritability
There may have been confusion due to heritability typically being written as h^2, but the correct equation should be:
g' = sqrt(h^2) * g + sqrt(1-h^2) N(0, 1), where h^2 = heritability
or
g' = sqrt(h) * g + sqrt(1-h) N(0, 1), where h = heritability
The text was updated successfully, but these errors were encountered:
I have a branch that fixes this, but it doesn't seem like I have permission to push
Sorry, something went wrong.
Here is the fix: 13315fa
#14
No branches or pull requests
In the paper and implementation you add noise to the genetic component of the phenotype to reach a desired heritability using:
There may have been confusion due to heritability typically being written as h^2, but the correct equation should be:
or
The text was updated successfully, but these errors were encountered: