vvmurthy / RadiationTherapyDecisionSupport

Python Code, MATLAB Original Code and data to benchmark Radiation Therapy Decision Support Algorithm
0 stars 1 forks source link

Redo Structure of folders in `Python` code #2

Open vvmurthy opened 6 years ago

vvmurthy commented 6 years ago

Currently the Structure is as follows

Python
    AlgoEngine
    General
    OVH
    ....

However, this structure is confusing- AlgoEngine controls the other modules as it calls the other modules functions as needed. The structure should instead be

Python/
   AlgoEngine/
        General/
        OVH/
        ...

To show this difference. At the same level as AlgoEngine, we could later on write functionalities like UserEngine and such specifically for the general functionality of the website as well.