Skip to content

Commit 66c9745

Browse files
committed
feat: add UHN multisite dataset
1 parent f552e80 commit 66c9745

5 files changed

Lines changed: 59 additions & 0 deletions

File tree

initial/datasets.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,12 @@
6161
"subsite": "oral-cavity",
6262
"repo_name": "lycosystem/lydata.private",
6363
"ref": "2025-ksa-oral-cavity"
64+
},
65+
{
66+
"year": 2024,
67+
"institution": "uhn",
68+
"subsite": "multisite",
69+
"repo_name": "lycosystem/lydata.private",
70+
"ref": "2024-uhn-multisite"
6471
}
6572
]

initial/institutions.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,14 @@
6161
"country": "CH",
6262
"phone": "+41628384141",
6363
"logo": "logos/ksa.png"
64+
},
65+
{
66+
"name": "University Health Network",
67+
"shortname": "UHN",
68+
"street": "190 Elizabeth St.",
69+
"city": "Toronto, ON",
70+
"country": "CA",
71+
"phone": "+14169464559",
72+
"logo": "logos/uhn.png"
6473
}
6574
]

initial/users.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,32 @@
9797
"is_active": true,
9898
"is_staff": false,
9999
"is_superuser": false
100+
},
101+
{
102+
"email": "matoro@student.ethz.ch",
103+
"first_name": "Maria Giulia",
104+
"last_name": "Toro",
105+
"institution": "USZ",
106+
"is_active": true,
107+
"is_staff": false,
108+
"is_superuser": false
109+
},
110+
{
111+
"email": "andrew.hope@uhn.ca",
112+
"first_name": "Andrew",
113+
"last_name": "Hope",
114+
"institution": "UHN",
115+
"is_active": true,
116+
"is_staff": false,
117+
"is_superuser": false
118+
},
119+
{
120+
"email": "sejin.kim@uhn.ca",
121+
"first_name": "Sejin",
122+
"last_name": "Kim",
123+
"institution": "UHN",
124+
"is_active": true,
125+
"is_staff": false,
126+
"is_superuser": false
100127
}
101128
]

lyprox/dataexplorer/subsites.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,17 @@ class Oropharynx(models.TextChoices):
114114
C10_8 = "C10.8", "Overlapping lesion of oropharynx"
115115
C10_9 = "C10.9", "Oropharynx, unspecified"
116116

117+
class Nasopharynx(models.TextChoices):
118+
"""Tumor subsites in the nasopharynx."""
119+
120+
C11 = "C11", "Nasopharynx"
121+
C11_0 = "C11.0", "Superior wall of nasopharynx"
122+
C11_1 = "C11.1", "Posterior wall of nasopharynx"
123+
C11_2 = "C11.2", "Lateral wall of nasopharynx"
124+
C11_3 = "C11.3", "Anterior wall of nasopharynx"
125+
C11_8 = "C11.8", "Overlapping lesion of nasopharynx"
126+
C11_9 = "C11.9", "Nasopharynx, unspecified"
127+
117128
class Hypopharynx(models.TextChoices):
118129
"""Tumor subsites in the rest of the hypopharynx."""
119130

@@ -126,6 +137,11 @@ class Hypopharynx(models.TextChoices):
126137
C13_8 = "C13.8", "Overlapping lesion of hypopharynx"
127138
C13_9 = "C13.9", "Hypopharynx, unspecified"
128139

140+
class NasalCavity(models.TextChoices):
141+
"""Tumor subsite in the nasal cavity."""
142+
143+
C30_0 = "C30.0", "Nasal cavity"
144+
129145
class Larynx(models.TextChoices):
130146
"""Tumor subsites in the rest of the larynx."""
131147

media/logos/uhn_.png

16.6 KB
Loading

0 commit comments

Comments
 (0)