-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
file organization for package creation (#243)
* directory reorganization and renaming to src dir * moving config.py into src and abstract_azure_runner.py into mechanistic_azure * some comment changes * removing old experiments * changing path of sero initializer * packaging resp_ode draft * removing unneccessary packagewithin resp_ode * updating azure related scripts to new packaged resp-ode * fixing import in shiny apps * moving azure code into src * removing config dir out of the package
- Loading branch information
1 parent
0a3ba3d
commit 4cb75c7
Showing
63 changed files
with
573 additions
and
2,443 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,7 +1,50 @@ | ||
{ | ||
"INITALIZER_NAME": "base initializer covid", | ||
"SEROLOGICAL_DATA_PATH": "data/serological-data/", | ||
"SIM_DATA_PATH": "data/abm-data/abm_population.csv", | ||
"SEROLOGICAL_DATA_PATH": "data/serological-data/sero-initializer-csvs", | ||
"CONTACT_MATRIX_PATH": "data/demographic-data/contact_matrices", | ||
"POP_SIZE": 1000000, | ||
"INITIAL_INFECTIONS": 32000 | ||
"INITIAL_INFECTIONS": 32000, | ||
"WANING_PROTECTIONS": [ | ||
1.0, | ||
0.942, | ||
0.942, | ||
0.942, | ||
0.0 | ||
], | ||
"INFECTIOUS_PERIOD": 7.0, | ||
"EXPOSED_TO_INFECTIOUS": 3.6, | ||
"STRAIN_INTERACTIONS": [ | ||
[ | ||
1.0, | ||
0.7, | ||
0.49 | ||
], | ||
[ | ||
0.7, | ||
1.0, | ||
0.7 | ||
], | ||
[ | ||
0.49, | ||
0.7, | ||
1.0 | ||
] | ||
], | ||
"VACCINE_EFF_MATRIX": [ | ||
[ | ||
0, | ||
0.34, | ||
0.68 | ||
], | ||
[ | ||
0, | ||
0.24, | ||
0.48 | ||
], | ||
[ | ||
0, | ||
0.14, | ||
0.28 | ||
] | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.