-
Notifications
You must be signed in to change notification settings - Fork 1
UNC R0.2 Pre MVP Manual Brochure
xinyang.li edited this page Jul 12, 2024
·
1 revision
Change the display configuration file format from Excel to CSV
-
Required info: User, Case No.
- Adjacent Rows with the same User and same Case No. will be considered as one task.
- User; Case No.; Path; Collapse; Highlight; Top in CSV are case sensitive. Please follow the above screenshot’s format
- Please mark True if you would like to collapse some info; Please mark True if you would like to highlight some info; Please input number if you would like to move them to the top, and small numbers will go higher position in the case detail screen’s Important info section.
-
Path: xx.xx OR xx.xx.xx
- How to find a path: You can assign a case to your AugMed account to review the UI layout and find out the title of each section on AugMed. Then config path and related actions. For example, the following titles in blue consist of path in this case 100.
Notes:
- The path is case-sensitive.
- Not able to configure the next layer, such as Headache or Fever, in Chief Complaint and Current Symptoms.
- How to find a path: You can assign a case to your AugMed account to review the UI layout and find out the title of each section on AugMed. Then config path and related actions. For example, the following titles in blue consist of path in this case 100.
- URL: {your_host}/admin/config/upload
- Method: Post
- Upload file:
- Collapse of path xx.xx (PATIENT COMPLAINT.Current Symptoms
- Collapse of path xx.xx.xx (BACKGROUND.Patient Demographics. Age)
- Highlight of path xx.xx (PATIENT COMPLAINT.Chief Complaint)
- Highlight of path xx.xx.xx (PHYSICAL EXAMINATION.Vital signs)
- Move path xx.xx to Top
- Move path xx.xx.xx to Top
User can config answer page through api for many of rounds of experiments
- URL: {your_host}/admin/config/answer
- Method: Post
- Request body:
[ { "type": "Text", "title": "What is your diagnosis based on the information you currently have?", "required":"true" }, { "type": "Paragraph", "title": "What additional information do you require to make a final diagnosis?", "required":"true" }, { "type": "SingleChoice", "title": "What is your confidence?", "options": [ "High Confidence", "Medium Confidence", "Low Confidence" ], "required":"false" }, { "type": "MultipleChoice", "title": "What medical field are you interested in?", "options": [ "Cardiology", "Neurology", "Orthopedics", "Radiology" ], "required":"true" } ]
Notes: There are 4 types of questions: Text, Paragraph, SingleChoice, MultipleChoice Questions will be displayed in Answer page by order.
We're using PostgreSQL for database, so you can either download data by development tools like: pgAdmin or command line base on psql
client.
For Linux(Ubuntu)
sudo apt-get install postgresql-client
For MacOS
brew install postgresql
or libpq
that gives you psql, pg_dump and a whole bunch of other client utilities
brew install libpq
\COPY answer TO '{output_csv_file_path}' WITH DELIMITER ',' CSV HEADER