Skip to content

Commit e5149d6

Browse files
committed
add contentuploader description
1 parent 7759f61 commit e5149d6

File tree

1 file changed

+51
-14
lines changed

1 file changed

+51
-14
lines changed

src/content_uploader/ContentUploader.py

Lines changed: 51 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -81,24 +81,61 @@ def __init__(self) -> None:
8181
"field_type": "file",
8282
"allowed":["text/plain", "text/csv"]
8383
},
84-
"Patient plans (RT plan DICOM)": {
85-
"level": "prescription",
86-
"key":"rt_plan_path",
87-
"field_type": "file",
88-
"allowed":["application/dicom"]
84+
"Patient dose files": {
85+
"level": "prescription",
86+
"key":"patient_dose_files",
87+
"field_type": "folder",
88+
"allowed":["text/plain", "text/csv", "application/dicom"]
8989
},
90-
"Patient Planning CT (RT_CT_PATH)": {
91-
"level": "prescription",
92-
"key":"rt_ct_path",
90+
"Patient planning CTs": {
91+
"level": "prescription",
92+
"key":"patient_planning_cts",
9393
"field_type": "folder",
94-
"allowed":["application/dicom"]
94+
"allowed":["text/plain", "text/csv", "application/dicom"]
95+
},
96+
"Patient structure sets": {
97+
"level": "prescription",
98+
"key":"patient_structure_sets",
99+
"field_type": "folder",
100+
"allowed":["text/plain", "text/csv", "application/dicom"]
95101
},
96-
"Patient Structure set (DICOM)": {
97-
"level": "prescription",
98-
"key":"rt_structure_path",
99-
"field_type": "file",
100-
"allowed":["application/dicom"]
102+
"Patient plans": {
103+
"level": "prescription",
104+
"key":"patient_plans",
105+
"field_type": "folder",
106+
"allowed":["text/plain", "text/csv", "application/dicom"]
107+
},
108+
"Patient CBCT images": {
109+
"level": "fraction",
110+
"key":"patient_cbct_images",
111+
"field_type": "folder",
112+
"allowed":["text/plain", "text/csv", "application/dicom"]
113+
},
114+
"Couch Registration files": {
115+
"level": "fraction",
116+
"key":"couch_registration_files",
117+
"field_type": "folder",
118+
"allowed":["text/plain", "text/csv", "application/dicom"]
101119
},
120+
121+
# "Patient plans (RT plan DICOM)": {
122+
# "level": "prescription",
123+
# "key":"rt_plan_path",
124+
# "field_type": "file",
125+
# "allowed":["application/dicom"]
126+
# },
127+
# "Patient Planning CT (RT_CT_PATH)": {
128+
# "level": "prescription",
129+
# "key":"rt_ct_path",
130+
# "field_type": "folder",
131+
# "allowed":["application/dicom"]
132+
# },
133+
# "Patient Structure set (DICOM)": {
134+
# "level": "prescription",
135+
# "key":"rt_structure_path",
136+
# "field_type": "file",
137+
# "allowed":["application/dicom"]
138+
# },
102139
# "RT Dose DICOM": {
103140
# "level": "prescription",
104141
# "key":"rt_dose_path",

0 commit comments

Comments
 (0)