"Aging is not an inevitable consequence of thermodynamics — it is a drift in information storage."
— Inspired by David A. Sinclair's Information Theory of Aging
AnTiEnTRopY is an open-source, research-grade computational platform for the quantitative analysis of biological aging through the lens of epigenetic entropy. The system integrates five mathematically distinct engines — an ElasticNetCV biological clock, a site-wise Shannon entropy decomposition module, a Harmonic Resonance Field (HRF) wave-interference classifier, a partial reprogramming reversal simulator, and a Monte Carlo escape velocity engine — into a unified Streamlit interface.
The core hypothesis formalized here is that biological aging corresponds, at the epigenomic level, to a stochastic drift of CpG methylation beta values toward maximum informational disorder, i.e. toward
This work draws on the epigenetic clock literature (Horvath 2013; Hannum 2013; Levine et al. 2018), partial reprogramming biology (Ocampo et al. 2016; Lu et al. 2020; Yang et al. 2023), longevity escape velocity theory (de Grey 2004), and novel spectral analysis of the methylome inspired by the HRF wave-interference framework introduced in Debanik Debnath (2025).
- Scientific Background
- Mathematical Framework
- Architecture
- Installation
- Data Format
- Usage
- Interface & Visualizations
- Key Findings
- Limitations & Future Work
- References
- Author
DNA methylation at CpG dinucleotides — the addition of a methyl group to the fifth carbon of cytosine when followed by guanine — is among the most extensively studied epigenetic modifications in eukaryotes. The human genome contains approximately 28 million CpG sites, of which roughly 2–4% are assayed in Illumina 450K and EPIC (850K) array platforms widely used in aging research.
In 2013, Steve Horvath (UCLA) demonstrated that a sparse linear combination of DNA methylation beta values at just 353 CpG sites could predict chronological age across 51 tissue types and 82 datasets with a median absolute error of approximately 3.6 years — a finding that fundamentally reshaped our understanding of epigenetic aging. This "pan-tissue epigenetic clock" (Horvath, 2013) uses elastic net regression to select and weight CpG sites, many of which are located in CpG islands near developmental gene promoters. Its construction on 8,000 samples spanning the entire human lifespan — including embryonic stem cells (predicted age ≈ 0) and centenarian tissue — established that DNA methylation age is a genuine biological signal, not merely a statistical artifact.
The deviation of epigenetic age from chronological age — epigenetic age acceleration — has since been linked to all-cause mortality, cognitive decline, cancer risk, and inflammatory burden, independent of known clinical risk factors (Chen et al. 2016; Marioni et al. 2015).
The hypothesis formalized in AnTiEnTRopY draws from several converging theoretical threads:
Waddington's Epigenetic Landscape (1957) described development as a ball rolling downhill into attractor basins, with cell identity corresponding to stable low-energy valleys. Aging, in this framework, can be understood as a slow erosion of those valleys — a drift away from the developmentally defined attractors into states of higher informational disorder.
The Information Theory of Aging (Sinclair & LaPlante 2019; Kane & Sinclair 2019) proposes that aging arises from the loss of epigenetic information — not from the accumulation of DNA mutations per se, but from a progressive noisification of the methylation landscape. Young cells maintain a high-fidelity epigenetic program; old cells exhibit increased stochastic variation in methylation state, reducing the signal-to-noise ratio of gene regulatory programs.
Shannon Entropy as a Disorder Metric: The binary entropy function
The landmark 2006 discovery by Takahashi and Yamanaka demonstrated that somatic cells can be reprogrammed to pluripotency through the ectopic expression of four transcription factors: Oct4, Sox2, Klf4, and c-Myc (OSKM). Full reprogramming erases cellular identity, but the partial reprogramming paradigm — pioneered in vivo by Ocampo et al. (2016) — demonstrates that cyclic, transient expression of OSKM (or the safer OSK subset; Lu et al. 2020) can reverse age-associated epigenetic marks without loss of cell type identity. In aged mice, systemically delivered AAV-OSK extended median remaining lifespan by 109% (Browder et al. 2023).
These experiments confirm the central assumption of AnTiEnTRopY's reversal module: that the epigenetic program of an aged cell retains a recoverable "youthful memory" that can, in principle, be restored by moving high-drift CpG sites back toward their young-reference beta values.
File: EnTRopY.py | Class: EpigeneticEntropy
For a CpG site with methylation beta value
with boundary conditions
For a sample with
The MOI ranges in
Across
The slope
For each CpG site
is computed via vectorized matrix operations (complexity
For each sample, two complementary disorder statistics are computed:
where
File: CloCk.py | Class: BiologicalClock
From the full CpG matrix
The default is
The reduced feature matrix
where
The L1 penalty (
Raw predicted biological age $\hat{a}{\text{bio}}$ is correlated with chronological age $a{\text{chrono}}$ by construction of the regression. To remove this dependency and isolate true epigenetic dysregulation, intrinsic age acceleration is computed as the residual of the linear regression $\hat{a}{\text{bio}} \sim a{\text{chrono}}$:
A positive
A curated subset of known Horvath 2013 clock CpGs (hypermethylated and hypomethylated with age) is cross-referenced against the selected feature set, providing a biological validation metric for the user's dataset coverage.
File: HRF_EpIgEnEtIc.py | Class: HRFEpigenetic
The HRF framework, originally introduced by Debanik Debnath (2025) for EEG-based brain state classification, is adapted here to the methylation domain. The central analogy is:
| EEG Domain | Epigenetic Domain |
|---|---|
| Neural oscillation patterns | Methylation beta-value profiles |
| Brain state (sleep, wake, etc.) | Biological age class (Young, Middle, Old) |
| Signal coherence | Methylation order (MOI) |
| Phase noise | Epigenetic entropy ( |
| Resonance frequency | Age-class-specific |
A young epigenome exhibits coherent, low-entropy methylation patterns — analogous to a standing wave at a class-specific resonance frequency. A senescent epigenome exhibits phase decoherence — analogous to high-frequency noise overwhelming the structured signal.
The methylation matrix
The default
Given a query sample
where:
-
$\gamma > 0$ is the spatial damping coefficient, controlling how rapidly the influence of a training point decays with distance -
$\omega_c = \omega_0 \cdot (c+1)$ is the class-specific resonance frequency, with$c \in {0, 1, 2}$ for Young, Middle, and Old -
$k$ is the number of nearest oscillators per class (default$k = 5$ )
The Gaussian envelope implements locality — only nearby epigenomes contribute meaningfully to the resonance energy. The cosine term implements wave interference — when the query lies at a resonant distance from a training point, the energy is amplified; at anti-resonant distances, it is suppressed.
Class assignment follows maximum resonance energy:
Normalized class probabilities are computed as softmax-like normalization over energies:
These probabilities provide graded age-state confidence, visualizable as a radar chart or probability bar across the three biological age classes.
The parameters
over the grid
For spectral analysis of the methylation profile, the beta-value vector of a sample (truncated to the top-$K$ variable CpGs) is treated as a 1D signal and decomposed via the Real Fast Fourier Transform:
The power spectrum
A high coherence ratio (low-frequency dominance) reflects an ordered, youthful methylation pattern; a high spectral entropy reflects a disordered, high-frequency landscape consistent with epigenetic aging.
File: ReVeRsAL.py | Class: ReversalSimulator
From the full dataset, young and old reference methylation profiles are constructed as population means over the youngest and oldest
The per-site drift magnitude is:
Partial reprogramming is modeled as a targeted reset of the highest-drift CpG sites toward the young reference. Given an intervention at level
The post-intervention beta values are:
or, for a partial (80%) correction:
All values are clipped to
This formulation is mathematically analogous to the partial reprogramming intervention modeled in Ocampo et al. (2016), where cyclic OSKM expression partially restores the youthful methylation landscape without inducing full dedifferentiation.
A sweep over
File: ImMoRtAlItY.py | Class: ImmortalityEngine
The entropy-based aging rate is calibrated from population data:
estimated from the slope of the age-entropy regression (Section I.3). The biological entropy age
Consider an individual receiving reprogramming interventions at regular intervals of
The system is at epigenetic escape velocity when
The minimum escape velocity percentage
This condition is the epigenetic analogue of Aubrey de Grey's longevity escape velocity (de Grey 2004): the minimum therapeutic intensity such that biological age does not accumulate faster than interventions can reverse it.
Stochastic biological age trajectories are simulated via Monte Carlo integration. For each of
where
The floor at age 18 reflects the constraint that epigenetic reprogramming is not expected to revert to a pre-adult developmental state. The ensemble of
A 2D sweep over intervention intensity
Green regions of the resulting heatmap (
AnTiEnTRopY/
│
├── AnTiEnTRopY.py ← Streamlit application (UI + orchestration)
│
├── EnTRopY.py ← EpigeneticEntropy: Shannon H(β), MOI, drift CpGs
├── CloCk.py ← BiologicalClock: ElasticNetCV, age acceleration
├── HRF_EpIgEnEtIc.py ← HRFEpigenetic: resonance energy, PCA, FFT
├── ReVeRsAL.py ← ReversalSimulator: intervention model, reversal curve
├── ImMoRtAlItY.py ← ImmortalityEngine: escape velocity, Monte Carlo
│
└── requirements.txt ← Python dependencies
CSV (Methylation + Ages)
│
▼
┌───────────────┐ ┌──────────────────┐ ┌──────────────────┐
│ BiologicalClock│──▶│ EpigeneticEntropy │──▶ │ HRFEpigenetic │
│ ElasticNetCV │ │ H(β), MOI, drift │ │ Resonance E_c │
└───────┬───────┘ └──────────────────┘ └──────────────────┘
│
▼
┌────────────────┐ ┌────────────────────┐
│ReversalSimulator│──▶ │ ImmortalityEngine │
│ R(p), δβ │ │ p*, MC trajectories│
└────────────────┘ └────────────────────┘
| Module | Dominant Operation | Complexity |
|---|---|---|
EnTRopY — per-sample entropy |
Vectorized H(β) over N CpGs | |
EnTRopY — CpG drift correlations |
Vectorized Pearson correlation | |
CloCk — feature selection |
Variance over M samples | |
CloCk — ElasticNetCV |
Coordinate descent, 5-fold | |
HRFEpigenetic — PCA |
Truncated SVD | |
HRFEpigenetic — resonance |
KNN + energy per sample | |
ReVeRsAL — reversal curve |
20-step intervention sweep | |
ImMoRtAlItY — Monte Carlo |
300–500 trajectory simulations |
- Python 3.9 or later
- pip
git clone https://github.com/Devanik21/AnTiEnTRopY.git
cd AnTiEnTRopY
pip install -r requirements.txtstreamlit>=1.32.0
pandas>=2.0.0
numpy>=1.24.0
scikit-learn>=1.3.0
scipy>=1.11.0
plotly>=5.18.0
streamlit run AnTiEnTRopY.pyThe application will open at http://localhost:8501.
AnTiEnTRopY expects a CSV file with the following structure:
| Column | Type | Description |
|---|---|---|
age |
float | Chronological age (years) |
cg00000029 |
float | Methylation beta value, CpG site 1 |
cg00000165 |
float | Methylation beta value, CpG site 2 |
| ... | ... | ... |
cg27644521 |
float | Methylation beta value, CpG site N |
Beta values must lie in
The data format is compatible with output from:
- Illumina HumanMethylation450K array (450,000 CpGs)
- Illumina EPIC (850K) array (850,000 CpGs)
- RRBS (Reduced Representation Bisulfite Sequencing) — with CpG identifier alignment
- GEO datasets (NCBI Gene Expression Omnibus) after standard beta-value extraction and normalization (e.g.,
minfi,ChAMP)
- Upload your methylation CSV via the sidebar file uploader.
-
Configure the sidebar parameters:
- Number of variable CpGs for clock training (
$K$ , default 5000) - Young reference percentile for reversal simulator (
$p$ , default 20%) - Intervention level for batch reversal analysis
- Number of variable CpGs for clock training (
- The application automatically runs all five engines in sequence.
- Navigate the six analysis tabs:
| Tab | Engine | Key Output |
|---|---|---|
| Biological Clock | BiologicalClock |
Age predictions, IEAA scatter, CpG coefficients |
| Epigenetic Entropy | EpigeneticEntropy |
MOI trajectory, entropy-age correlation, drift landscape |
| HRF Classifier | HRFEpigenetic |
Age-state probabilities, resonance energy profile, FFT wave signature |
| Reversal Simulator | ReversalSimulator |
Reversal curve, per-sample intervention response, drift CpG heatmap |
| Immortality Engine | ImmortalityEngine |
Escape velocity, Monte Carlo trajectories, intervention landscape |
| Research Report | All modules | Compiled quantitative summary, downloadable TXT report |
The platform renders the following interactive Plotly visualizations:
- Biological Age vs. Chronological Age scatter — color-coded by IEAA
-
Age Acceleration Distribution — histogram of
$\Delta^{\text{IEAA}}$ across the population - Top-N CpG Coefficient Waterfall — positive (hypermethylated) and negative (hypomethylated) predictors
-
Entropy Trajectory — mean entropy
$\pm$ 1 SD, binned by age decade - Methylation Order Index Distribution — violin plot by age tertile
- CpG Drift Landscape — scatter of age-correlation vs. mean entropy, annotated by drift type
-
Resonance Energy Profile — per-sample
$E_{\text{Young}}$ ,$E_{\text{Middle}}$ ,$E_{\text{Old}}$ radar chart - Methylation Power Spectrum — FFT of the methylation profile, coherence ratio annotation
-
Reversal Curve — biological years reversed vs.
$p_{\text{int}}%$ CpGs intervened - Monte Carlo Longevity Trajectories — P5/P25/P50/P75/P95 bands with chronological age reference
-
Intervention Landscape Heatmap — net
$\Delta a_{\text{bio}}$ over 30 years as function of$p \times T$
All visualizations use a custom dark-lab CSS theme (--bg-primary: #030d12, --accent-green: #00e5a0) with IBM Plex Mono and DM Serif Display typography.
The Research Report tab synthesizes cross-module findings. Based on literature-representative Illumina 450K datasets, the following patterns are consistently observed:
-
Linear entropy accumulation with age. Mean CpG entropy increases at approximately
$1$ –$5 \times 10^{-4}$ H units per year (Pearson$r \approx 0.6$ –$0.9$,$p < 10^{-10}$ ), confirming the epigenetic drift hypothesis. This is consistent with the stochastic epigenetic reprogramming model of Issa (2014) and the entropy landscape described in Hannum et al. (2013). -
Non-linear reversal response. The reversal curve
$R(p)$ is concave — the first 20–30% of CpG sites intervened (highest drift sites) yields disproportionately large biological age reduction. This is mechanistically explained by the fact that clock-associated CpGs are heavily enriched at high-drift sites, and that the ElasticNet clock assigns large coefficients to precisely those sites. -
HRF resonance is age-state-specific. Young epigenomes (
$\leq 35$ years) exhibit significantly higher coherence ratios (low-frequency spectral power dominance) and lower spectral entropy compared to Old epigenomes ($> 55$ years), confirming that the wave-interference interpretation of methylation patterns carries discriminative biological signal. -
Escape velocity is mathematically achievable under realistic assumptions. At intervention intervals of
$T = 1$ –$2$ years, escape velocity is typically achievable at$p^* \approx 30$ –$60%$ CpG reset intensity, depending on the dataset's reversal curve saturation point. -
Horvath clock CpG overlap validates feature selection. The top-variance ElasticNet features consistently include a non-trivial fraction of the 353 Horvath CpGs, providing biological convergent validity for the data-driven approach.
This platform is a research prototype and comes with important limitations:
-
Simulated reversal model. The
ReversalSimulatorapplies a deterministic beta-value reset based on population averages. In biological reality, reprogramming efficiency is stochastic, cell-type-specific, and depends on the delivery mechanism (viral, chemical, mRNA). The model does not capture multi-step dynamics or partial epigenetic memory. -
Clock trained on uploaded data. Unlike the pre-trained Horvath clock (353 CpGs, coefficients fixed), the
BiologicalClockhere is retrained on the user's dataset. This makes it adaptive but potentially overfitted on small datasets. At minimum, the cross-validated MAE should be examined. -
HRF classification boundaries are arbitrary. The age class boundaries (Young
$\leq 35$ , Middle 36–55, Old$> 55$ ) are fixed and do not adapt to the uploaded dataset's age distribution. Future work could learn these boundaries from the data. -
FFT-based wave signature is phenomenological. The spectral interpretation of methylation beta profiles as "oscillations" is a mathematical analogy, not a literal biophysical wave. Caution is advised in over-interpreting dominant frequencies.
-
Single dataset, no external validation. All modules train and evaluate on the same uploaded dataset. Independent replication on held-out cohorts (e.g., GEO datasets) is essential before drawing biological conclusions.
Planned Extensions:
- Pre-loaded Horvath 353-CpG coefficients for zero-shot biological age prediction
- Integration with GrimAge (Lu et al. 2019) and DunedinPACE (Belsky et al. 2022) second-generation clocks
- Multi-tissue, cell-type deconvolution via CIBERSORT-style reference panel decomposition
- Chemical reprogramming simulation (Yang et al. 2023 cocktail modelling)
- Time-series trajectory tracking for longitudinal methylation datasets
The following literature informs the mathematical and biological foundations of AnTiEnTRopY:
Epigenetic Clocks
Horvath, S. (2013). DNA methylation age of human tissues and cell types. Genome Biology, 14(10), R115. https://doi.org/10.1186/gb-2013-14-10-r115
Hannum, G. et al. (2013). Genome-wide methylation profiles reveal quantitative views of human aging rates. Molecular Cell, 49(2), 359–367. https://doi.org/10.1016/j.molcel.2012.10.016
Levine, M. E. et al. (2018). An epigenetic biomarker of aging for lifespan and healthspan. Aging, 10(4), 573–591. https://doi.org/10.18632/aging.101414
Horvath, S. & Raj, K. (2018). DNA methylation-based biomarkers and the epigenetic clock theory of ageing. Nature Reviews Genetics, 19(6), 371–384. https://doi.org/10.1038/s41576-018-0004-3
Lu, A. T. et al. (2019). DNA methylation GrimAge strongly predicts lifespan and healthspan. Aging, 11(2), 303–327. https://doi.org/10.18632/aging.101684
Belsky, D. W. et al. (2022). DunedinPACE, a DNA methylation biomarker of the pace of aging. eLife, 11, e73420. https://doi.org/10.7554/eLife.73420
Partial Reprogramming
Takahashi, K. & Yamanaka, S. (2006). Induction of pluripotent stem cells from mouse embryonic and adult fibroblast cultures by defined factors. Cell, 126(4), 663–676. https://doi.org/10.1016/j.cell.2006.07.024
Ocampo, A. et al. (2016). In vivo amelioration of age-associated hallmarks by partial reprogramming. Cell, 167(7), 1719–1733. https://doi.org/10.1016/j.cell.2016.11.052
Lu, Y. et al. (2020). Reprogramming to recover youthful epigenetic information and restore vision. Nature, 588(7836), 124–129. https://doi.org/10.1038/s41586-020-2975-4
Yang, J.-H. et al. (2023). Chemically induced reprogramming to reverse cellular aging. Aging, 15(13), 5966–5989. https://doi.org/10.18632/aging.204896
Browder, K. C. et al. (2023). In vivo partial reprogramming alters age-associated molecular changes during physiological aging in mice. Nature Aging, 2(3), 243–253. https://doi.org/10.1038/s43587-022-00183-2
Information Theory of Aging
Sinclair, D. A. & LaPlante, M. D. (2019). Lifespan: Why We Age — and Why We Don't Have To. Atria Books.
Kane, A. E. & Sinclair, D. A. (2019). Epigenetic changes during aging and their reprogramming potential. Critical Reviews in Biochemistry and Molecular Biology, 54(1), 61–83. https://doi.org/10.1080/10409238.2019.1570075
Longevity Escape Velocity
de Grey, A. D. N. J. (2004). Escape velocity: Why the prospect of extreme human life extension matters now. PLOS Biology, 2(6), e187. https://doi.org/10.1371/journal.pbio.0020187
Epigenetic Entropy
Hannum, G. et al. (2013). ibid.
Issa, J.-P. J. (2014). Aging and epigenetic drift: a vicious cycle. Journal of Clinical Investigation, 124(1), 24–29. https://doi.org/10.1172/JCI69735
Johansson, Å. et al. (2013). Continuous aging of the human DNA methylome throughout the human lifespan. PLOS ONE, 8(6), e67378. https://doi.org/10.1371/journal.pone.0067378
Machine Learning for Epigenomics
Friedman, J., Hastie, T. & Tibshirani, R. (2010). Regularization paths for generalized linear models via coordinate descent. Journal of Statistical Software, 33(1), 1–22. https://doi.org/10.18637/jss.v033.i01
Zhang, W. et al. (2023). Aging clocks, entropy, and the limits of age-reversal. Developmental Cell, 58(4), 227–237.
HRF Framework (Original)
Debnath, D. (2025). Harmonic Resonance Field: A wave-interference framework for neural state classification. (Preprint / Working Paper)
Devanik21 (Debanik)
Research in computational biology, epigenetic aging, and novel ML frameworks for biomedical signal analysis.
AnTiEnTRopY — because entropy only wins if you let it.
Apache 2.0 License | Open to collaboration and extension
From a statistical mechanics perspective, each CpG site can be modeled as a two-state system with states
The per-site configurational entropy contribution (up to a factor of
The total informational entropy produced per decade is:
where
The negentropy (negative entropy, or informational order) of the methylome at age
The rate of negentropy loss:
is the fundamental thermodynamic aging rate. Partial reprogramming, in this framework, acts as a biological Maxwell's Demon — investing metabolic work (OSKM transcription, chromatin remodeling) to restore local order in specific CpGs, reducing entropy at high-drift sites. The minimum thermodynamic work required to reset
This provides a theoretical lower bound on the metabolic cost of epigenetic rejuvenation — an estimate not previously formalized in the partial reprogramming literature.
The time evolution of a CpG site's population-level beta value can be modeled as a continuous-time stochastic process. Let
where
The ensemble mean entropy
AnTiEnTRopY treats CpG sites as independent in entropy computation:
The true joint entropy is less than this sum by the total correlation:
Methylation co-variation within CpG islands, shores, and PMDs contributes substantially to
The elastic net penalty combines L1 and L2 regularization. For the biological clock problem:
- L1 sparsity reflects the biological reality that only a small fraction of CpG sites are genuine aging biomarkers. The Horvath clock uses 353 of ~450,000 sites; L1 drives the remainder to exactly zero.
- L2 stability handles correlated CpGs in co-methylation blocks. Pure Lasso arbitrarily selects one CpG from a correlated group; elastic net distributes weight across all of them.
A CpG
The L2 term then shrinks active coefficients by
The effective model complexity of the elastic net fit is:
where
High-dimensional methylation data
captures the
In typical Illumina 450K aging datasets, PC1 often reflects cell-type composition; PCs 3–20 capture age-related variance. The HRF classifier operates in
If the epigenetic manifold is approximately smooth and Riemannian, biological aging is a geodesic trajectory from the young to old attractor in the reduced PCA space:
where
The minimum achievable MAE of any unbiased age estimator is bounded below by:
where
Because many CpG sites carry correlated age information, the aggregate mutual information satisfies:
The excess is the redundancy
The Horvath clock's median MAE of ~3.6 years implies approximately:
of age information recovered from the 353-CpG signal — a precise quantification of how much biological aging information is encoded in a sparse methylation signature.
By the strong law of large numbers, for each time point
At
The predictive interval width grows with time due to variance accumulation:
where
Each resonance basis function
In the limit
— exactly a Gaussian kernel density estimate of the class-conditional density. Classification by
Constructive interference occurs when the query sits at resonant distances from training samples:
The Intrinsic Epigenetic Age Acceleration
Empirical estimates (Chen et al. 2016; Marioni et al. 2015) suggest
Define biological age as state
Escape velocity is the stochastic stability condition
| Clock | Year | CpGs | MAE (years) | Training Data | Key Feature |
|---|---|---|---|---|---|
| Horvath (pan-tissue) | 2013 | 353 | ~3.6 | 82 datasets, 8,000 samples | Multi-tissue universality |
| Hannum (blood) | 2013 | 71 | ~3.9 | 656 whole-blood samples | Blood-specific accuracy |
| PhenoAge | 2018 | 513 | ~4.0 | NHANES + clinical biomarkers | Phenotypic age (mortality) |
| GrimAge | 2019 | ~1,000 | ~3.0 | Plasma proteins as targets | Lifespan/healthspan prediction |
| DunedinPACE | 2022 | 173 | — | Longitudinal (Dunedin cohort) | Pace of aging ($\Delta$BioAge/$\Delta t$) |
| AnTiEnTRopY | 2025 | Variable ( |
Dataset-dependent | User-uploaded | Entropy + resonance + escape velocity |
| Term | Definition |
|---|---|
|
Beta value |
DNA methylation level at a CpG site; |
|
Binary entropy |
Shannon entropy of a Bernoulli( |
| CpG site | Cytosine-phosphate-Guanine dinucleotide; primary site of DNA methylation in mammals |
| DNMT | DNA methyltransferase; enzyme for methylation maintenance (DNMT1) and de novo methylation (DNMT3A/B) |
| Elastic Net | Penalized regression combining L1 (sparsity) and L2 (stability) regularization |
| IEAA | Intrinsic Epigenetic Age Acceleration; residual of bio age on chrono age |
| Epigenetic clock | Regression model predicting chronological age from CpG beta values |
|
Escape velocity |
Minimum intervention intensity such that reversal rate |
| HRF | Harmonic Resonance Field; wave-interference classification framework (Debnath 2025) |
| Illumina 450K / EPIC | Microarray platforms measuring ~450,000 / ~850,000 CpG sites genome-wide |
| MOI | Methylation Order Index; |
| OSKM | Oct4, Sox2, Klf4, c-Myc; the four Yamanaka reprogramming factors |
| Partial reprogramming | Transient OSKM induction to rejuvenate epigenetic state without full dedifferentiation |
| PCA | Principal Component Analysis; linear dimensionality reduction via SVD |
| PMD | Partially Methylated Domain; intermediate-methylation genomic regions that expand with aging |
| PRC2 | Polycomb Repressive Complex 2; deposits H3K27me3 at developmental gene promoters |
| Spectral entropy | Shannon entropy of the normalized FFT power spectrum; measures methylation signal disorder |
|
Total correlation |
Excess of summed marginal entropies over joint entropy; measures CpG co-methylation redundancy |
| Landauer limit | Minimum thermodynamic work to erase one bit of information: |
AnTiEnTRopY — because entropy only wins if you let it.
Apache 2.0 License | Open to collaboration and extension