MaziyarPanahi commited on
Commit
75899ea
·
verified ·
1 Parent(s): f4263b8

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +130 -0
README.md ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - tabular-regression
5
+ - tabular-classification
6
+ tags:
7
+ - gwas
8
+ - summary-statistics
9
+ - psychiatric-genomics
10
+ - pgc
11
+ - mdd
12
+ - mental-health
13
+ - genetics
14
+ - genomics
15
+ pretty_name: >-
16
+ PGC Major Depressive Disorder GWAS Summary Statistics
17
+ size_categories:
18
+ - 1M-10M
19
+ configs:
20
+ - config_name: AntiDepResponse2021
21
+ default: true
22
+ data_files:
23
+ - split: train
24
+ path: data/AntiDepResponse2021/*.parquet
25
+ - config_name: mdd2013
26
+ data_files:
27
+ - split: train
28
+ path: data/mdd2013/*.parquet
29
+ - config_name: mdd2018
30
+ data_files:
31
+ - split: train
32
+ path: data/mdd2018/*.parquet
33
+ - config_name: mdd2018_noUKBB
34
+ data_files:
35
+ - split: train
36
+ path: data/mdd2018_noUKBB/*.parquet
37
+ - config_name: mdd2021asi
38
+ data_files:
39
+ - split: train
40
+ path: data/mdd2021asi/*.parquet
41
+ - config_name: mdd2023diverse
42
+ data_files:
43
+ - split: train
44
+ path: data/mdd2023diverse/*.parquet
45
+ - config_name: mdd2025
46
+ data_files:
47
+ - split: train
48
+ path: data/mdd2025/*.parquet
49
+ - config_name: ppd2023
50
+ data_files:
51
+ - split: train
52
+ path: data/ppd2023/*.parquet
53
+ ---
54
+
55
+ # PGC Major Depressive Disorder — GWAS Summary Statistics
56
+
57
+ [![License: CC BY 4.0](https://img.shields.io/badge/License-CC_BY_4.0-lightgrey)](https://creativecommons.org/licenses/by/4.0/)
58
+
59
+ ## Dataset Description
60
+
61
+ Genome-wide association study (GWAS) summary statistics for **Major Depressive Disorder** phenotypes from the [Psychiatric Genomics Consortium (PGC)](https://pgc.unc.edu/).
62
+
63
+ Each publication is available as a separate subset (config) and can be loaded independently.
64
+
65
+ ## Usage
66
+
67
+ ```python
68
+ from datasets import load_dataset
69
+
70
+ # Load a specific GWAS
71
+ ds = load_dataset("OpenMed/pgc-mdd", "AntiDepResponse2021")
72
+ print(ds)
73
+ ```
74
+
75
+ ### List all available subsets
76
+
77
+ ```python
78
+ from datasets import get_dataset_config_names
79
+ print(get_dataset_config_names("OpenMed/pgc-mdd"))
80
+ ```
81
+
82
+ ## Subsets
83
+
84
+ | Config | Phenotype | Journal | Year | PubMed |
85
+ |--------|-----------|---------|------|--------|
86
+ | `AntiDepResponse2021` | Antidepressant Response | Biol Psychiatry: Global Open Science | 2021 | Pending |
87
+ | `mdd2013` | Major Depression | Molecular Psychiatry | 2013 | [22472876](https://pubmed.ncbi.nlm.nih.gov/22472876/) |
88
+ | `mdd2018` | Major Depression | Nature Genetics | 2018 | [29700475](https://pubmed.ncbi.nlm.nih.gov/29700475/) |
89
+ | `mdd2018_noUKBB` | Major Depression (no UK Biobank) | Nature Genetics | 2018 | [29700475](https://pubmed.ncbi.nlm.nih.gov/29700475/) |
90
+ | `mdd2021asi` | Major Depression (East Asian) | JAMA Psychiatry | 2021 | [34586374](https://pubmed.ncbi.nlm.nih.gov/34586374/) |
91
+ | `mdd2023diverse` | Major Depression (Multi-Ancestry) | Nature Genetics | 2023 | [38177345](https://pubmed.ncbi.nlm.nih.gov/38177345/) |
92
+ | `mdd2025` | Major Depression | Cell | 2025 | [39814019](https://pubmed.ncbi.nlm.nih.gov/39814019/) |
93
+ | `ppd2023` | Peripartum Depression | American Journal of Psychiatry | 2023 | [37849304](https://pubmed.ncbi.nlm.nih.gov/37849304/) |
94
+
95
+ ## Data Format
96
+
97
+ All data is stored as **Apache Parquet** shards (10,000 rows each). Common columns:
98
+
99
+ | Column | Description |
100
+ |--------|-------------|
101
+ | `SNP` / `ID` | SNP rsID or variant identifier |
102
+ | `CHR` | Chromosome |
103
+ | `BP` / `POS` | Base-pair position (typically GRCh37/hg19) |
104
+ | `A1` | Effect allele |
105
+ | `A2` | Non-effect allele |
106
+ | `OR` / `BETA` | Odds ratio or effect size |
107
+ | `SE` | Standard error |
108
+ | `P` | P-value |
109
+ | `_source_file` | Original source filename |
110
+
111
+ > Column names vary between publications. Check each subset's schema.
112
+
113
+ ## Citation
114
+
115
+ Please cite the original publication (see PubMed links above) and acknowledge the PGC:
116
+
117
+ > Data were obtained from the Psychiatric Genomics Consortium — https://pgc.unc.edu/
118
+
119
+ ## Terms of Use
120
+
121
+ Released under **[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)** / **[CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/)**.
122
+
123
+ - Cite the original publication(s)
124
+ - Do not attempt to re-identify individual participants
125
+ - Comply with the PGC [data use policies](https://pgc.unc.edu/for-researchers/data-access/)
126
+
127
+ ## Source
128
+
129
+ - [Psychiatric Genomics Consortium (PGC)](https://pgc.unc.edu/)
130
+ - [PGC Downloads](https://pgc.unc.edu/for-researchers/download-results/)