Datasets:

Modalities:
Tabular
Text
Formats:
csv
Languages:
English
DOI:
Libraries:
Datasets
pandas
License:
piotrkan commited on
Commit
be83157
·
verified ·
1 Parent(s): 4583322

Update README.md

Browse files

Updating as a part of hugging science initiative - belive there is value in OpenTargets dataset being utilized fully

Files changed (1) hide show
  1. README.md +90 -4
README.md CHANGED
@@ -1,10 +1,96 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
3
  ---
4
 
5
- ## Clinical evidence
6
 
7
- Dataset of clinical studies annotated with their predicted stop reason and genetic evidence when available.
8
- Referenced in https://doi.org/10.1101/2023.02.07.23285407
 
9
 
10
- Generated with the 22.04 Open Targets Data with [this script](https://github.com/opentargets/stopReasons/blob/main/analysis/python/enrichments.py).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - huggingscience
7
+ - science
8
+ pretty_name: clinical_trial_stopped_evidence
9
+ size_categories:
10
+ - 1M<n<10M
11
  ---
12
 
13
+ ## OpenTargets Clinical Evidence Dataset
14
 
15
+ This OpenTargets clinical evidence dataset represents a comprehensive collection of clinical trial data linking genetic targets to diseases, containing 32 structured columns that capture the complete lifecycle of clinical studies.
16
+ The dataset is annotated with clinical trials' predicted stop reason and genetic evidence when available and was referenced in the _[Why Clinical Trials Stop: The Role of Genetics](https://doi.org/10.1101/2023.02.07.23285407)_.
17
+ The study analyzed 28,842 stopped clinical trials and demonstrated that genetic evidence significantly influences trial efficacy,
18
 
19
+ ## Tutorial
20
+
21
+ To access the dataset, you can use HF datasets:
22
+ ```
23
+ from datasets import load_dataset
24
+
25
+ ds = load_dataset("opentargets/clinical_evidence")
26
+
27
+ # see first record
28
+ next(ds.iter(1))
29
+ ```
30
+
31
+ ## Features
32
+
33
+ The dataset contains a lot of genetic and clinical features which can be used for ML modelling.
34
+
35
+ The features are summarized in the table below:
36
+
37
+ | Column Name | Data Type | Description | Example Values |
38
+ |-------------|-----------|-------------|----------------|
39
+ | **targetId** | string | Ensembl gene identifier representing the target gene | `ENSG00000004468`, `ENSG00000065518` |
40
+ | **diseaseId** | string | Disease ontology identifier using EFO or MONDO terms | `EFO_0000203`, `MONDO_0005148` |
41
+ | **nctid** | string | ClinicalTrials.gov identifier for the clinical trial | `NCT03236428`, `NCT01089192` |
42
+ | **clinicalStatus** | string | Current status of the clinical trial | `Active, not recruiting`, `Completed`, `Withdrawn`, `Terminated`, `Suspended` |
43
+ | **clinicalPhase** | int64 | Numeric representation of the clinical trial phase | `1`, `2`, `3`, `4` |
44
+ | **studyStartDate** | string | Date when the clinical trial began (YYYY-MM-DD format) | `2017-11-24`, `2016-11-30` |
45
+ | **stopStatus** | string | Reason for trial discontinuation (null if ongoing/completed normally) | `null`, `Withdrawn`, `Terminated`, `Suspended` |
46
+ | **isStopped** | string | Boolean indicator if the trial was stopped | `stopped`, `null` |
47
+ | **phase4** | string | Indicates if this is a Phase IV (post-marketing) trial | `Phase IV`, `null` |
48
+ | **phase3** | string | Indicates if this is a Phase III trial | `Phase III+`, `null` |
49
+ | **phase2** | string | Indicates if this is a Phase II trial | Various phase indicators, `null` |
50
+ | **id** | int64 | Internal record identifier | Numeric identifiers |
51
+ | **why_stopped** | string | Detailed reason why a trial was discontinued | Trial-specific discontinuation reasons |
52
+ | **phase** | string | String representation of the trial phase | Phase descriptors |
53
+ | **status** | string | Trial status information | Status descriptions |
54
+ | **last_update_posted_date** | string | Most recent update to the trial record | Date strings |
55
+ | **completion_date** | string | Date when the trial was completed (if applicable) | Date strings |
56
+ | **prediction** | string | Computational prediction about the target-disease association | Prediction values |
57
+ | **metaprediction** | string | Meta-analysis prediction combining multiple evidence sources | Meta-prediction values |
58
+ | **max_l2g** | double | Maximum locus-to-gene (L2G) score indicating genetic evidence strength | Floating point scores |
59
+ | **l2g_075** | string | L2G score threshold at 0.75 confidence level | Threshold indicators |
60
+ | **l2g_05** | string | L2G score threshold at 0.5 confidence level | Threshold indicators |
61
+ | **l2g_025** | string | L2G score threshold at 0.25 confidence level | Threshold indicators |
62
+ | **l2g_01** | string | L2G score threshold at 0.1 confidence level | Threshold indicators |
63
+ | **l2g_005** | string | L2G score threshold at 0.05 confidence level | Threshold indicators |
64
+ | **taId** | string | Therapeutic area identifier | Therapeutic area codes |
65
+ | **taLabel** | string | Full therapeutic area label | Therapeutic area names |
66
+ | **taLabelSimple** | string | Simplified therapeutic area label | Simplified area names |
67
+ | **gc** | double | Gene constraint score | Floating point constraint scores |
68
+ | **lof_tolerance** | string | Loss-of-function tolerance classification | Tolerance classifications |
69
+ | **rnaDistribution** | string | RNA expression distribution pattern | Distribution patterns |
70
+ | **rnaSpecificity** | string | RNA expression specificity | Specificity measures |
71
+ | **partnersBin** | string | Protein interaction partners classification | Partner classifications |
72
+ | **datasourceId** | string | Identifier for the data source | Data source identifiers |
73
+ | **datatypeId** | string | Type of evidence data | Evidence type identifiers |
74
+ | **total** | int64 | Total count or score for the evidence | Numeric totals |
75
+
76
+
77
+
78
+
79
+ ## Citation
80
+ ```
81
+ @article{razuvayevskaya2023clinical,
82
+ title={Why Clinical Trials Stop: The Role of Genetics},
83
+ author={Razuvayevskaya, Olesya and Lopez, Irene and Dunham, Ian and Ochoa, David},
84
+ journal={medRxiv},
85
+ pages={2023--02},
86
+ year={2023},
87
+ publisher={Cold Spring Harbor Laboratory},
88
+ doi={10.1101/2023.02.07.23285407}
89
+ }
90
+ ```
91
+
92
+ ## OpenTargets
93
+ Interested in other datasets or research related to drug or target discovery? Visit [OpenTargets Platform](https://www.opentargets.org/)
94
+
95
+ ## Reproduction
96
+ Dataset was generated with the 22.04 Open Targets Data with [this script](https://github.com/opentargets/stopReasons/blob/main/analysis/python/enrichments.py).