Skip to content
/genetic-scoring/effect-size

Effect Size (Beta)

The beta in a GWAS is the regression coefficient for one allele copy: the average change in the trait, in the trait's own units, per additional copy of the effect allele.

Effect size (beta) is the slope of a regression of a trait on genotype: the average change in the trait per additional copy of the effect allele, expressed in whatever units that trait was measured in. Genotype is coded 0, 1, or 2 copies, so a beta of 0.31 for a height-associated SNP in a model fit on raw centimeters means carriers gain about 0.31 cm per copy, roughly 0.62 cm for homozygotes.

Yes, beta is an effect size. Whether 0.3 is “good” depends entirely on the units. In a GWAS of standardized height it would be enormous, larger than any common variant known. As a Cohen’s d or a correlation it would be middling. As a log odds ratio it is an OR of 1.35, which for a common variant in a complex disease is unusually strong.

How it works

Fit y ~ g + covariates per variant, where g is dosage. The coefficient on g is beta, and its standard error falls roughly as 1/sqrt(2 N f(1-f)), where f is the effect allele frequency. That factor is why rare variants need huge betas to reach significance and why beta and frequency trade off along the detection boundary of every GWAS.

Three conventions decide what the number means:

  • Linear traits. Beta is in trait units if the phenotype was left raw, or in standard deviations if it was standardized or inverse-normal transformed. Most modern consortia standardize, so betas are in SD units and a common-variant beta of 0.02 is typical.
  • Binary traits. Logistic regression reports log(OR). Exponentiate to get the odds ratio. Some pipelines report OR directly in the beta column, which breaks any downstream tool expecting a log scale.
  • Molecular traits. eQTL betas are per-allele changes in log-expression, and here effect sizes are large: a substantial share of expressed genes carry a local eQTL with a clearly measurable per-allele effect, which is why cis-eQTL discovery works in hundreds of samples while disease GWAS needs hundreds of thousands 1.

Published betas are biased upward at the discovery locus. Winner’s curse means the variants that cross 5e-8 are enriched for those whose noise pushed them up, and replication effect sizes shrink. Methods exist to deconvolve the true effect distribution from summary statistics and to predict how much a replication attempt should shrink 2. Mixed architectures are real: for age at maturity in Atlantic salmon, large-scale GWAS found both a few genuinely large-effect loci and a polygenic background underneath them 3.

In your own data

Summary statistics arrive as tab-delimited text: SNP CHR BP A1 A2 FRQ BETA SE P N. Before computing anything, run these checks.

Allele alignment first. A1 in the sumstats must be the allele you are counting in your VCF or PLINK .bim. If they mismatch, flip the sign of beta. For strand-ambiguous SNPs (A/T and C/G), you cannot resolve strand from alleles alone. Compare FRQ against your own cohort frequency and drop ambiguous SNPs with frequency near 0.5, where the comparison is uninformative. This single step is the most common source of silently wrong polygenic scores, and standard QC tutorials treat it as a first-class step rather than an afterthought 4.

Then check units. If median(abs(BETA)) for genome-wide significant hits is around 0.02 to 0.05, you are in SD units. If it sits near 1.0 for a case-control study, the column is probably an odds ratio, not a log odds ratio. Confirm with Z = BETA/SE and check that 2*pnorm(-abs(Z)) reproduces the reported P. If it does not, the beta and SE are on different scales or the P came from a different test.

For scoring, plink2 --score sumstats.txt 1 4 7 cols=+scoresums takes SNP, A1, and BETA columns. Use --score-col-nums for multiple betas. Do not use raw genome-wide significant hits alone. Methods that model the full effect size distribution across all variants, rather than thresholding, give better prediction from the same summary statistics 5.

Limitations

Betas are estimated in one population and one context. They do not transfer cleanly across ancestries because linkage disequilibrium between the tag SNP and the causal variant differs, and effect heterogeneity across cohorts is common enough that meta-analysis interpretation needs explicit heterogeneity modeling 6. Replicability and out-of-sample prediction remain the hard parts of GWAS, not discovery 7.

A beta is also not a causal quantity. It is the marginal association of a tag SNP, confounded by LD with everything nearby and by population structure that survived your principal components. Reading a set of betas as evidence about selection or about mechanism requires assumptions that frequently fail 8. Nothing in a beta column is clinical information. If a variant or a score prompts a health question, that belongs with a clinician and, where relevant, a clinical-grade confirmatory test.

Woolf Software builds longitudinal molecular profiles of individuals: whole-genome sequencing, RNA sequencing, proteomics, blood biomarkers, and continuous glucose data, integrated into one model of you. Build your profile.

Computational Angle

Every line of a summary statistics file carries a beta, a standard error, and an effect allele; your genotype supplies the dosage. The product, summed, is a polygenic score, and most of the errors people make are in aligning alleles and units, not in the arithmetic.

Related Terms

References

  1. GTEx Consortium. Genetic effects on gene expression across human tissues . Nature, 2017. DOI
  2. Dominic Holland, Yunpeng Wang, Wesley K. Thompson, et al.. Estimating Effect Sizes and Expected Replication Probabilities from GWAS Summary Statistics . Frontiers in Genetics, 2016. DOI
  3. Marion Sinclair-Waters, Jørgen Ødegård, Sven Arild Korsvoll, et al.. Beyond large-effect loci: large-scale GWAS reveals a mixed large-effect and polygenic architecture for age at maturity of Atlantic salmon . Genetics Selection Evolution, 2020. DOI
  4. Andries T. Marees, Hilde de Kluiver, Sven Stringer, et al.. A tutorial on conducting genome‐wide association studies: Quality control and statistical analysis . International Journal of Methods in Psychiatric Research, 2018. DOI
  5. Shuang Song, Wei Jiang, Lin Hou, et al.. Leveraging effect size distributions to improve polygenic risk scores derived from summary statistics of genome-wide association studies . PLOS Computational Biology, 2020. DOI
  6. Buhm Han, Eleazar Eskin. Interpreting Meta-Analyses of Genome-Wide Association Studies . PLoS Genetics, 2012. DOI
  7. Urko M. Marigorta, Juan Antonio Rodríguez, Greg Gibson, et al.. Replicability and Prediction: Lessons and Challenges from GWAS . Trends in Genetics, 2018. DOI
  8. John Novembre, Nicholas H Barton. Tread Lightly Interpreting Polygenic Tests of Selection . Genetics, 2018. DOI