-
Notifications
You must be signed in to change notification settings - Fork 53
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 #158 from Emory-HITI/dev
An experimental front-end and tests framework to Niffler.
- Loading branch information
Showing
36 changed files
with
3,244 additions
and
399 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
4 changes: 3 additions & 1 deletion
4
modules/app-layer/src/main/resources/intermediary/intermediate.csv_sample
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
DeviceSerialNumber, StudyInstanceUID, PatientID, DurationInMinutes, Number of Series in the Study, Exam Start Time, Exam End Time, StudyDescription | ||
142635, 1.2.345.65454, 123456, 5.433333333, 8, 101744, 102310, StudyDesc | ||
142635, 1.2.345.65454, 123456, 5.433333333, 8, 101744, 102310, StudyDesc | ||
135, 1.3.345.65454, 12365, 5.43333, 2, 34343, 102310, StudyDesc1 | ||
1635, 1.4.345.65454, 1256, 5.433333, 3, 434343, 102310, StudyDec2 |
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,26 @@ | ||
# A Frontend Framework for Niffler | ||
|
||
Here we have created a frontend module for Niffler for ease of acccess of it's modules. | ||
This module is using **Flask** as an engine to run all the frontend. | ||
|
||
**Make sure you have installed Flask from requirements.txt file.** | ||
|
||
## Steps for running Frontend Module | ||
|
||
1. Run server.py file by navigating into frontend directory and running: | ||
`python server.py` or `python3 server.py` (user level access) | ||
|
||
2. Then navigate to `localhost:9000` to view your Niffler modules. | ||
|
||
## Admin level access | ||
|
||
1. Run server.py file by navigating into frontend directory and running: | ||
`python server.py --admin` or `python3 server.py --admin` (admin level access) | ||
|
||
2. The admin access enables only admins to create new users. | ||
|
||
|
||
|
||
*Currently PNG extraction Frontend is developed and it can take values from frontend and can be passed into backend* | ||
|
||
**NOTE: `__init__.py` file is important as it serves the frontend directory as a package, so the values can be accessed from other modules also** |
Oops, something went wrong.