Skip to content

Commit 74e5cf6

Browse files
fedorovgitbook-bot
authored andcommitted
GITBOOK-400: change request with no subject merged in GitBook
1 parent 161678f commit 74e5cf6

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* [Introduction](data/introduction.md)
3333
* [Data versioning](data/data-versioning.md)
3434
* [Organization of data](data/organization-of-data/README.md)
35+
* [IDC data model](data/organization-of-data/idc-data-model.md)
3536
* [Files and metadata](data/organization-of-data/files-and-metadata.md)
3637
* [Resolving CRDC Globally Unique Identifiers (GUIDs)](data/organization-of-data/guids-and-uuids.md)
3738
* [Clinical data](data/organization-of-data/clinical.md)

data/organization-of-data/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
This section describes the current organization of IDC data. The organization of data was static from IDC Version 2 through IDC Version 13 except that [clinical data](organization-of-data-v2-through-v13-deprecated/clinical.md) was added in Version 11. Development of the clinical data resource is an ongoing project. From IDC v14, our data [became available](https://registry.opendata.aws/nci-imaging-data-commons/) from the Amazon AWS Open Data Registry, and the files in storage buckets were organized into series-level folders.
44

5+
### IDC data model
6+
57
### [Files and metadata](files-and-metadata.md)
68

79
### [GA4GH DRS objects](https://learn.canceridc.dev/data/organization-of-data/guids-and-uuids)
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# IDC data model
2+
3+
{% hint style="danger" %}
4+
This page is under development
5+
{% endhint %}
6+
7+
```mermaid
8+
erDiagram
9+
COLLECTION ||--o{ CASE: contains
10+
CASE ||--o{ STUDY : contains
11+
STUDY ||--o{ SERIES : contains
12+
SERIES ||--o{ INSTANCE : contains
13+
ANALYSIS_RESULT ||--o{ SERIES : adds
14+
ANALYSIS_RESULT }o--o{ COLLECTION : spans
15+
16+
COLLECTION {
17+
string collection_id
18+
}
19+
CASE {
20+
string PatientID
21+
}
22+
STUDY {
23+
string StudyInstanceUID
24+
}
25+
SERIES {
26+
string SeriesInstanceUID
27+
}
28+
INSTANCE {
29+
string SOPInstanceUID
30+
}
31+
ANALYSIS_RESULT {
32+
string analysis_result_id
33+
}
34+
35+
36+
37+
```

0 commit comments

Comments
 (0)