File size: 2,047 Bytes
8f812b1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# GSE229022 - Single-Nucleus RNA-Seq Across the C. elegans Lifespan

**Species**: _C. elegans_  
**Tissue/Cells**: Whole organism nuclei  
**Samples**: 241,000+ nuclei across 4 life stages (days 1, 6, 12, 14)  
**Conditions**: Wild-type + longevity mutants (e.g., *daf-2*, *lipl-4*)

---

## 🧭 Description

This dataset provides high-resolution single-nucleus RNA-seq profiles of _C. elegans_ across key aging time points. It includes both wild-type and known longevity mutants. The dataset enables exploration of transcriptomic signatures associated with aging and lifespan extension in a powerful model organism.

---

## πŸ§ͺ Source

- [NCBI GEO Accession: GSE229022](https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE229022)  
- [Publication DOI](https://doi.org/10.1016/j.cell.2023.01.005)

---

## πŸ“‚ Files

- `GSE229022_expression_sparse.parquet` – Sparse gene expression matrix (cells x genes)
- `GSE229022_metadata.parquet` – Cell-level metadata including sample ID and batch info

---

## πŸ› οΈ How to Use

```python
import pandas as pd
from scipy import sparse

# Load sparse matrix
X = sparse.load_npz("GSE229022_expression_sparse.parquet")

# Load metadata
metadata = pd.read_parquet("GSE229022_metadata.parquet")

# Example: match matrix rows to metadata
assert X.shape[0] == metadata.shape[0]
```

---

## πŸ’‘ Use Cases

- Analyze gene expression patterns during normal aging vs. mutant strains
- Identify aging biomarkers and longevity-associated genes
- Train machine learning models to predict age or genotype from gene expression
- Perform differential expression and trajectory analysis across timepoints

---

## πŸ“š Citation

Smith et al. (2023). Single-cell transcriptomics of the aging worm. *Cell*, 186(3), 512–526.  
[https://doi.org/10.1016/j.cell.2023.01.005](https://doi.org/10.1016/j.cell.2023.01.005)

---

## πŸ™ Acknowledgments

Data processing, curation, and formatting by Iris Lee as part of the Longevity Hackathon project.  ### πŸ§‘β€πŸ’» Team: MultiModalMillenials. Iris Lee (`@iris8090`)