pankajrajdeo commited on
Commit
fda674a
1 Parent(s): 5952865

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md CHANGED
@@ -33,3 +33,70 @@ configs:
33
  - split: train
34
  path: data/train-*
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  - split: train
34
  path: data/train-*
35
  ---
36
+
37
+ # Dataset Card for MRREL Data
38
+
39
+ ## Dataset Description
40
+ ### Dataset Summary
41
+ The MRREL data is a component of the UMLS (Unified Medical Language System) Metathesaurus, available in the Rich Release Format (RRF). This dataset contains information about relationships between medical concepts and atoms, providing a detailed resource for understanding the interconnections within the UMLS Metathesaurus. It supports developers and researchers in comprehensively representing and utilizing medical terminology and their relationships.
42
+
43
+ ### Purpose
44
+ The MRREL dataset offers structured information on the relationships between medical concepts and atoms. This data is crucial for medical informatics applications, clinical decision support systems, and other health-related software solutions, aiding in the precise representation and understanding of the relationships among medical terms.
45
+
46
+ ## Column Descriptions
47
+ ### CUI1 (Concept Unique Identifier 1)
48
+ - **Description**: A unique identifier assigned to the first concept in the relationship within the UMLS Metathesaurus.
49
+ - **Values**: Alphanumeric strings, such as `C0001175`. Each value uniquely identifies a medical concept.
50
+
51
+ ### AUI1 (Atom Unique Identifier 1)
52
+ - **Description**: A unique identifier for the first atom in the relationship, which is a specific occurrence of a string in a source vocabulary.
53
+ - **Values**: Variable length field, typically 8 or 9 characters, such as `A0019180`. Each value uniquely identifies an atom within the dataset.
54
+
55
+ ### STYPE1 (Source Type 1)
56
+ - **Description**: The name of the column in MRCONSO.RRF that contains the identifier used for the first element in the relationship, e.g., AUI, CODE, CUI, SCUI, SDUI.
57
+ - **Values**: Alphanumeric strings indicating the source type, such as `AUI`, `CODE`, `CUI`, `SCUI`, `SDUI`.
58
+
59
+ ### REL (Relationship)
60
+ - **Description**: The type of relationship of the second concept or atom to the first concept or atom.
61
+ - **Values**: Alphanumeric strings indicating the relationship type, such as `RN`, `RO`, `RQ`, `SY`, `RL`, `CHD`, `PAR`, `QB`, `QB2`, `QB3`.
62
+
63
+ ### CUI2 (Concept Unique Identifier 2)
64
+ - **Description**: A unique identifier assigned to the second concept in the relationship within the UMLS Metathesaurus.
65
+ - **Values**: Alphanumeric strings, such as `C0001175`. Each value uniquely identifies a medical concept.
66
+
67
+ ### AUI2 (Atom Unique Identifier 2)
68
+ - **Description**: A unique identifier for the second atom in the relationship, which is a specific occurrence of a string in a source vocabulary.
69
+ - **Values**: Variable length field, typically 8 or 9 characters, such as `A0019180`. Each value uniquely identifies an atom within the dataset.
70
+
71
+ ### STYPE2 (Source Type 2)
72
+ - **Description**: The name of the column in MRCONSO.RRF that contains the identifier used for the second element in the relationship, e.g., AUI, CODE, CUI, SCUI, SDUI.
73
+ - **Values**: Alphanumeric strings indicating the source type, such as `AUI`, `CODE`, `CUI`, `SCUI`, `SDUI`.
74
+
75
+ ### RELA (Additional Relationship Label)
76
+ - **Description**: An optional, more specific label for the relationship.
77
+ - **Values**: Alphanumeric strings providing additional specificity for the relationship, such as `isa`, `part_of`, `has_part`, `associated_with`. There are 964 unique values.
78
+
79
+ ### RUI (Relationship Unique Identifier)
80
+ - **Description**: A unique identifier for the relationship.
81
+ - **Values**: Alphanumeric strings, such as `R123456`. Each value uniquely identifies a relationship within the dataset.
82
+
83
+ ### SL (Source of Relationship Labels)
84
+ - **Description**: The source of the relationship labels.
85
+ - **Values**: Alphanumeric strings indicating the source, such as `MSH`, `SNOMEDCT_US`, `LNC`, `CSP`.
86
+
87
+ ## Example Record
88
+ ```
89
+ CUI1: C0001175
90
+ AUI1: A0019180
91
+ STYPE1: AUI
92
+ REL: RN
93
+ CUI2: C0001176
94
+ AUI2: A0019181
95
+ STYPE2: AUI
96
+ RELA: isa
97
+ RUI: R123456
98
+ SL: MSH
99
+ ```
100
+
101
+ ## Usage
102
+ This dataset is primarily intended for developers and researchers working on medical informatics applications. It can be used to ensure accurate and comprehensive understanding of the relationships between medical terms and their attributes, support clinical decision-making, and enhance health information systems.