Odds Ratio
The odds ratio is the ratio of the odds of a trait among carriers of an allele to the odds among non-carriers, and it is the standard effect-size unit reported by case-control genetic association studies.
An odds ratio (OR) is the odds of having a trait among people carrying a variant, divided by the odds among people who do not. OR = 1 means no association. OR > 1 means the allele is more common in cases than controls. OR < 1 means the opposite.
Odds, not probability. If 200 of 1,000 people with a genotype have a condition, the probability is 0.2 and the odds are 200/800 = 0.25. The two diverge as the event gets common, which is why an OR overstates a risk ratio for common outcomes and approximates it closely for rare ones.
How it works
For a biallelic SNP in a case-control study you build a 2×2 table of allele counts:
| Effect allele | Other allele | |
|---|---|---|
| Cases | a | b |
| Controls | c | d |
OR = (a·d)/(b·c). The standard error of log(OR) is sqrt(1/a + 1/b + 1/c + 1/d), so the 95% CI is exp(log(OR) ± 1.96·SE). Software reports log(OR) because the sampling distribution is roughly normal on that scale. In PLINK, --logistic gives you a beta by default and --or converts it: OR = exp(beta).
The allelic table above assumes a multiplicative model per allele. Genotypic tests compare het and hom-alt against hom-ref separately and give you two ORs, which is how you detect dominance or recessivity. Ignoring the mode of inheritance costs power and biases the summary estimate, which is the motivation behind model-free alternatives like the generalized odds ratio, computed from the full ordered genotype distribution rather than a collapsed 2×2 table.12
Now the numbers. For common variants in common disease, per-allele ORs cluster between about 1.1 and 1.5. A meta-analysis of association studies across many traits found the typical replicated common-variant effect sits near an OR of 1.3.3 So an OR of 1.5 is on the strong end for a common SNP and unremarkable for a rare coding variant, where ORs of 3 to 10 appear. An OR of 2.5 for a common allele is rare enough that your first reaction should be to check the sample size and whether it has replicated, not to update your beliefs about yourself.
In your own data
GWAS summary statistics, the GWAS Catalog harmonized TSVs, and per-variant annotations from tools like bcftools +split-vep all carry these numbers. Concretely, when you join your VCF genotypes against a summary-stats file, check four columns before doing anything else:
effect_allelevs. your VCFALT. Strand and allele flips are the single most common error. For A/T and C/G SNPs strand cannot be resolved from the alleles alone, so match on allele frequency or drop them. Getting this wrong inverts the OR (you apply 1/OR without realizing it).- Whether the column is OR or beta. Applying
sum(dosage * OR)instead ofsum(dosage * log(OR))produces a score that is arithmetically meaningless. Convert once, at load, and name the columnlog_or. - Ancestry of the discovery cohort. An OR estimated in a European cohort transfers poorly when LD structure differs, because the tag SNP and the causal variant are no longer in the same phase.
- The confidence interval. An OR of 1.6 with a CI of 1.05–2.44 and an OR of 1.6 with a CI of 1.54–1.66 are different objects. Carry the CI through your pipeline.
The practical conversion: absolute risk ≈ baseline odds × OR, converted back to probability. At a 2% lifetime baseline, an OR of 1.5 moves you to roughly 3%. That is the number that matters, and interpreting it for your own health is a conversation with a clinician or genetic counselor, not a spreadsheet operation.
Limitations
Published ORs are biased upward. The variant enters the literature because it crossed a significance threshold in the discovery cohort, so the estimate is conditioned on being large, an effect quantified directly in GWAS data.4 Use the replication-cohort estimate when one exists.
Early reports overstate effects in general. Across association studies, the first published result was often substantially larger than the pooled estimate from subsequent studies, with a meaningful fraction failing to replicate at all.5 Complex-outcome associations compound this with phenotype heterogeneity and population stratification.6
A highly significant, well-replicated OR does not make a good classifier. Markers with ORs in the 1.3 to 1.5 range produce ROC curves barely above chance, because discrimination depends on the variant’s frequency and the distribution overlap, not the p-value.7 Reading a GWAS result well means checking sample size, replication, ancestry, and the absolute risk it implies.8
Finally, the single-SNP OR is a lower bound on the true genetic effect when the phenotype is dichotomized from an underlying liability, so per-SNP estimates understate the causal variant’s contribution even as selection bias inflates them.9 The two biases do not cancel in any predictable way.
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.
Every GWAS summary-statistics file you download has an OR or a beta column, and turning those numbers into anything meaningful about yourself requires knowing the allele coding, the baseline risk, and how much the published estimate is inflated.
Related Terms
References
- Elias Zintzaras. The Generalized Odds Ratio as a Measure of Genetic Risk Effect in the Analysis and Meta-Analysis of Association Studies . Statistical Applications in Genetics and Molecular Biology, 2010. DOI
- Elias Zintzaras. The power of generalized odds ratio in assessing association in genetic studies with known mode of inheritance . Journal of Applied Statistics, 2012. DOI
- Kirk E. Lohmueller, Celeste L. Pearce, Malcolm Pike, et al.. Meta-analysis of genetic association studies supports a contribution of common variants to susceptibility to common disease . Nature Genetics, 2003. DOI
- Chad Garner. Upward bias in odds ratio estimates from genome‐wide association studies . Genetic Epidemiology, 2007. DOI
- John P.A. Ioannidis, Evangelia E. Ntzani, Thomas A. Trikalinos, et al.. Replication validity of genetic association studies . Nature Genetics, 2001. DOI
- Helen M Colhoun, Paul M McKeigue, George Davey Smith. Problems of reporting genetic associations with complex outcomes . The Lancet, 2003. DOI
- Johanna Jakobsdottir, Michael B. Gorin, Yvette P. Conley, et al.. Interpretation of Genetic Association Studies: Markers with Replicated Highly Significant Odds Ratios May Be Poor Classifiers . PLoS Genetics, 2009. DOI
- Thomas A. Pearson. How to Interpret a Genome-wide Association Study . JAMA, 2008. DOI
- Sven Stringer, Naomi R. Wray, René S. Kahn, et al.. Underestimated Effect Sizes in GWAS: Fundamental Limitations of Single SNP Analysis for Dichotomous Phenotypes . PLoS ONE, 2011. DOI