MaziyarPanahi commited on
Commit
f95bd75
·
verified ·
1 Parent(s): db49b1f

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - ptsd
12
+ - mental-health
13
+ - genetics
14
+ - genomics
15
+ pretty_name: >-
16
+ PGC Post-Traumatic Stress Disorder GWAS Summary Statistics
17
+ size_categories:
18
+ - 1M-10M
19
+ configs:
20
+ - config_name: maltreatment2020
21
+ default: true
22
+ data_files:
23
+ - split: train
24
+ path: data/maltreatment2020/*.parquet
25
+ - config_name: ptsd2018
26
+ data_files:
27
+ - split: train
28
+ path: data/ptsd2018/*.parquet
29
+ - config_name: ptsd2019
30
+ data_files:
31
+ - split: train
32
+ path: data/ptsd2019/*.parquet
33
+ - config_name: ptsd2024
34
+ data_files:
35
+ - split: train
36
+ path: data/ptsd2024/*.parquet
37
+ ---
38
+
39
+ # PGC Post-Traumatic Stress Disorder — GWAS Summary Statistics
40
+
41
+ [![License: CC BY 4.0](https://img.shields.io/badge/License-CC_BY_4.0-lightgrey)](https://creativecommons.org/licenses/by/4.0/)
42
+
43
+ ## Dataset Description
44
+
45
+ Genome-wide association study (GWAS) summary statistics for **Post-Traumatic Stress Disorder** phenotypes from the [Psychiatric Genomics Consortium (PGC)](https://pgc.unc.edu/).
46
+
47
+ ## Usage
48
+
49
+ ```python
50
+ from datasets import load_dataset
51
+
52
+ ds = load_dataset("OpenMed/pgc-ptsd", "maltreatment2020")
53
+ print(ds)
54
+ ```
55
+
56
+ ## Subsets
57
+
58
+ | Config | Phenotype | Journal | Year | PubMed | Rows |
59
+ |--------|-----------|---------|------|--------|------|
60
+ | `maltreatment2020` | Childhood Maltreatment | Translational Psychiatry | 2020 | [32066696](https://pubmed.ncbi.nlm.nih.gov/32066696/) | 22,008,240 |
61
+ | `ptsd2018` | PTSD | Molecular Psychiatry | 2018 | [28439101](https://pubmed.ncbi.nlm.nih.gov/28439101/) | 59,901,811 |
62
+ | `ptsd2019` | PTSD | Nature Communications | 2019 | [31594949](https://pubmed.ncbi.nlm.nih.gov/31594949/) | 46,179,924 |
63
+ | `ptsd2024` | PTSD | Nature Genetics | 2024 | [38637617](https://pubmed.ncbi.nlm.nih.gov/38637617/) | 38,117,034 |
64
+
65
+ ## Terms of Use
66
+
67
+ This dataset is released under **[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)**.
68
+
69
+ 1. Cite the original publication(s)
70
+ 2. Not attempt to re-identify individual participants
71
+ 3. Comply with PGC [data use policies](https://pgc.unc.edu/for-researchers/data-access/)
72
+
73
+ ## Source
74
+
75
+ - [Psychiatric Genomics Consortium](https://pgc.unc.edu/)