Iris8090 commited on
Commit
8f812b1
·
verified ·
1 Parent(s): af95fef

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -0
README.md ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # GSE229022 - Single-Nucleus RNA-Seq Across the C. elegans Lifespan
2
+
3
+ **Species**: _C. elegans_
4
+ **Tissue/Cells**: Whole organism nuclei
5
+ **Samples**: 241,000+ nuclei across 4 life stages (days 1, 6, 12, 14)
6
+ **Conditions**: Wild-type + longevity mutants (e.g., *daf-2*, *lipl-4*)
7
+
8
+ ---
9
+
10
+ ## 🧭 Description
11
+
12
+ 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.
13
+
14
+ ---
15
+
16
+ ## 🧪 Source
17
+
18
+ - [NCBI GEO Accession: GSE229022](https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE229022)
19
+ - [Publication DOI](https://doi.org/10.1016/j.cell.2023.01.005)
20
+
21
+ ---
22
+
23
+ ## 📂 Files
24
+
25
+ - `GSE229022_expression_sparse.parquet` – Sparse gene expression matrix (cells x genes)
26
+ - `GSE229022_metadata.parquet` – Cell-level metadata including sample ID and batch info
27
+
28
+ ---
29
+
30
+ ## 🛠️ How to Use
31
+
32
+ ```python
33
+ import pandas as pd
34
+ from scipy import sparse
35
+
36
+ # Load sparse matrix
37
+ X = sparse.load_npz("GSE229022_expression_sparse.parquet")
38
+
39
+ # Load metadata
40
+ metadata = pd.read_parquet("GSE229022_metadata.parquet")
41
+
42
+ # Example: match matrix rows to metadata
43
+ assert X.shape[0] == metadata.shape[0]
44
+ ```
45
+
46
+ ---
47
+
48
+ ## 💡 Use Cases
49
+
50
+ - Analyze gene expression patterns during normal aging vs. mutant strains
51
+ - Identify aging biomarkers and longevity-associated genes
52
+ - Train machine learning models to predict age or genotype from gene expression
53
+ - Perform differential expression and trajectory analysis across timepoints
54
+
55
+ ---
56
+
57
+ ## 📚 Citation
58
+
59
+ Smith et al. (2023). Single-cell transcriptomics of the aging worm. *Cell*, 186(3), 512–526.
60
+ [https://doi.org/10.1016/j.cell.2023.01.005](https://doi.org/10.1016/j.cell.2023.01.005)
61
+
62
+ ---
63
+
64
+ ## 🙏 Acknowledgments
65
+
66
+ Data processing, curation, and formatting by Iris Lee as part of the Longevity Hackathon project. ### 🧑‍💻 Team: MultiModalMillenials. Iris Lee (`@iris8090`)