pankajrajdeo commited on
Commit
a3e5158
1 Parent(s): a24d5f3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md CHANGED
@@ -27,3 +27,55 @@ configs:
27
  - split: train
28
  path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  - split: train
28
  path: data/train-*
29
  ---
30
+
31
+ # Dataset Card for MRAUI Data
32
+
33
+ ## Dataset Description
34
+ ### Dataset Summary
35
+ The MRAUI data is a part of the UMLS (Unified Medical Language System) Metathesaurus, specifically available in the Rich Release Format (RRF). This dataset contains records of movements of Atom Unique Identifiers (AUI) between different concepts (CUI) across versions of the Metathesaurus. It provides a detailed record of changes in atom assignments and mappings, facilitating the tracking of updates and adjustments in medical terminology and concept relationships.
36
+
37
+ ### Purpose
38
+ The MRAUI dataset serves as a critical resource for understanding the historical changes and mappings of atom identifiers within the UMLS Metathesaurus. It helps developers and researchers track updates, ensuring accurate and up-to-date representations of medical concepts and their relationships, thereby supporting medical informatics applications and other health-related software solutions.
39
+
40
+ ## Column Descriptions
41
+ ### AUI1 (Atom Unique Identifier 1)
42
+ - **Description**: A unique identifier for the first atom involved in the movement or mapping.
43
+ - **Values**: Alphanumeric strings of 89 characters, such as `A0019180`. Each value uniquely identifies an atom within the dataset.
44
+
45
+ ### CUI1 (Concept Unique Identifier 1)
46
+ - **Description**: A unique identifier for the first concept associated with AUI1.
47
+ - **Values**: Alphanumeric strings of 88 characters, such as `C0001175`. Each value uniquely identifies a concept within the dataset.
48
+
49
+ ### VER (Version)
50
+ - **Description**: The version of the Metathesaurus in which the change to the AUI first occurred.
51
+ - **Values**: Alphanumeric strings, such as `2004AC`, representing various versions of the Metathesaurus.
52
+
53
+ ### MAPREASON (Reason for Mapping)
54
+ - **Description**: The reason for the mapping or movement of the atom identifier.
55
+ - **Values**: Alphanumeric string, typically a single value such as `move`, indicating the reason for the mapping.
56
+
57
+ ### AUI2 (Atom Unique Identifier 2)
58
+ - **Description**: A unique identifier for the second atom involved in the movement or mapping.
59
+ - **Values**: Alphanumeric strings of 89 characters, such as `A0021048`. Each value uniquely identifies an atom within the dataset.
60
+
61
+ ### CUI2 (Concept Unique Identifier 2)
62
+ - **Description**: A unique identifier for the second concept associated with AUI2. It represents the current concept that CUI1 most closely maps to.
63
+ - **Values**: Alphanumeric strings of 88 characters, such as `C0001175`. Each value uniquely identifies a concept within the dataset.
64
+
65
+ ### MAPIN (Mapping in Current Subset)
66
+ - **Description**: Indicates whether AUI2 is in the current subset. Possible values are `Y` (Yes), `N` (No), or null.
67
+ - **Values**: Alphanumeric string indicating the inclusion status of AUI2 in the current subset.
68
+
69
+ ## Example Record
70
+ ```
71
+ AUI1: A0019180
72
+ CUI1: C0001175
73
+ VER: 2004AC
74
+ MAPREASON: move
75
+ AUI2: A0021048
76
+ CUI2: C0001175
77
+ MAPIN: Y
78
+ ```
79
+
80
+ ## Usage
81
+ This dataset is primarily intended for developers and researchers working on medical informatics applications. It can be used to track the historical changes and mappings of atom identifiers, ensuring accurate and comprehensive understanding of medical concepts and their relationships over different versions of the UMLS Metathesaurus.