File size: 1,544 Bytes
d07b382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Telomere Length and Structure Dataset (PDF Extracted)

This dataset contains structured tables extracted from two peer-reviewed publications focused on telomere sequencing, length measurement, and structure—key biomarkers in aging and age-related disease.

## Dataset Description

The dataset is compiled from:
1. `s41467-024-49007-4.pdf` (Nature Communications)
2. `eScholarship UC item 0t23r589.pdf`

Extracted tables cover:
- Telomere length metrics
- Nanopore sequencing measurements
- Biological age associations
- Sample-level telomere profiles

The final dataset is saved in the file: `telomere_datasets_combined.parquet`

## Usage Instructions

```python
import pandas as pd

df = pd.read_parquet("telomere_datasets_combined.parquet")
print(df.head())
```

## Use Cases

- Train biological aging clocks using telomere length features
- Identify age-related trends in telomere attrition
- Benchmark telomere shortening in disease vs. healthy cohorts
- Integrate into multi-omics aging models

## Citation

If you use this dataset, please cite the original studies:
- [Nature Communications article](https://doi.org/10.1038/s41467-024-49007-4)
- [eScholarship publication](https://escholarship.org/uc/item/0t23r589)

## Acknowledgments

This dataset was curated and processed by **Iris Lee**. Tables were extracted using `pdfplumber` and converted to `.parquet` using `pandas`. ### 🧑‍💻 Team: MultiModalMillenials. Iris Lee (`@iris8090`)

We acknowledge the original authors for the data published in open-access journals.

---