-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from rvandewater/main
Adding AUMCdb to MEDS-DEV
- Loading branch information
Showing
6 changed files
with
101 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# AUMCdb | ||
|
||
## Description | ||
|
||
The first freely accessible intensive care database from within the European Union containing de-identified health data related to tens of thousands of European intensive care unit admissions, including demographics, vital signs, laboratory tests and medications. | ||
|
||
## Access Requirements | ||
|
||
Taken from [official website](https://amsterdammedicaldatascience.nl/amsterdamumcdb/#requesting-access): | ||
|
||
- **Access Policy**: Fill out and sign the combined Access and End User License form. | ||
- **License (for files)**: Specify the license under which the dataset files are distributed. | ||
- **Data Use Agreement**: Agreement found [here](https://amsterdammedicaldatascience.nl/content/uploads/sites/2/2022/12/arfeula_v1.6.pdf). | ||
- **Required training**: Valid training courses include the Data or Specimens Only Research (DSOR) course from CITI, the Basic Course for Clinical Investigators (BROK) from NFU or an equivalent course. The DSOR course may be taken free of charge and is also needed to gain access to the MIMIC and eICU intensive care databases from the USA. | ||
|
||
## Supported Tasks | ||
|
||
- `tasks/mortality/in_icu/first_24h.yaml` | ||
|
||
## MEDS-transformation | ||
|
||
[MEDS_transforms](https://github.com/mmcdermott/MEDS_transforms) now includes the AUMCdb example. Please refer to the [guide](https://github.com/mmcdermott/MEDS_transforms/tree/main/AUMC_Example). | ||
|
||
## Sources | ||
|
||
1. [AUMCdb dataset](https://amsterdammedicaldatascience.nl/amsterdamumcdb/) | ||
2. [AUMCdb Research Paper](https://journals.lww.com/ccmjournal/fulltext/2021/06000/sharing_icu_patient_data_responsibly_under_the.16.aspx) | ||
3. [AUMCdb Data Use Agreement](https://amsterdammedicaldatascience.nl/content/uploads/sites/2/2022/12/arfeula_v1.6.pdf) | ||
4. [Data Repository](https://easy.dans.knaw.nl/ui/home) | ||
5. [Code Repository](https://github.com/AmsterdamUMC/AmsterdamUMCdb) | ||
|
||
## Disclaimer | ||
|
||
Please refer to the data owners and the most up-to-date information when using this dataset in your research. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
predicates: | ||
icu_admission: | ||
code: { regex: "^ICU_ADMISSION//.*" } | ||
icu_discharge: | ||
code: { regex: "^ICU_DISCHARGE//.*" } | ||
|
||
death: | ||
code: MEDS_DEATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# New Dataset Template | ||
|
||
This is a template for creating a new dataset in MEDS-DEV. The dataset should be stored in a directory named after the dataset in the `src/MEDS-DEV/datasets` directory. | ||
|
||
## Description | ||
|
||
Describe the dataset in a few sentences. A link to the dataset's homepage and/or repository or a research paper is recommended. | ||
|
||
## Access Requirements | ||
|
||
Describe any access requirements for the dataset (e.g, human species research). If the dataset is publicly available, state that here. If the dataset is not publicly available, describe the process for obtaining access. We recommend the following topics be covered: | ||
|
||
- **Access Policy**: Describe the access policy for the dataset, including any restrictions or permissions required. | ||
- **License (for files)**: Specify the license under which the dataset files are distributed. | ||
- **Data Use Agreement**: Specify any data use agreement that must be signed to access the dataset. | ||
- **Required training**: Specify any training or certification required to access the dataset. | ||
|
||
## Supported Tasks | ||
|
||
Describe the existing tasks already present in MEDS-DEV that are covered. If there are new tasks that can be added, describe them here. Also note the `predicates.yaml` file that specifies the dataset's predicates. | ||
|
||
## MEDS-transformation | ||
|
||
Shortly specify the process of transforming this dataset to the MEDS format. If the dataset is already in the MEDS format when downloaded, specify that here. | ||
|
||
## Sources | ||
|
||
Summarize the sources of the dataset. If the dataset is a combination of multiple sources, list them here. | ||
|
||
1. https://link-to-dataset.org |