Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1148 Rename initial Mobility file and Vaccination file for simulation #1150

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/models/ode_secirvvs/parameters_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ IOResult<void> read_input_data_county(std::vector<Model>& model, Date date, cons
const std::string& dir, int num_days, bool export_time_series = false)
{
BOOST_OUTCOME_TRY(details::set_vaccination_data(
model, path_join(dir, "pydata/Germany", "all_county_ageinf_vacc_ma7.json"), date, county, num_days));
model, path_join(dir, "pydata/Germany", "vacc_county_ageinf_ma7.json"), date, county, num_days));

// TODO: Reuse more code, e.g., set_divi_data (in secir) and a set_divi_data (here) only need a different ModelType.
// TODO: add option to set ICU data from confirmed cases if DIVI or other data is not available.
Expand Down Expand Up @@ -965,7 +965,7 @@ IOResult<void> read_input_data_county(std::vector<Model>& model, Date date, cons
num_days, path_join(dir, "pydata/Germany", "county_divi_ma7.json"),
path_join(dir, "pydata/Germany", "cases_all_county_age_ma7.json"),
path_join(dir, "pydata/Germany", "county_current_population.json"),
path_join(dir, "pydata/Germany", "all_county_ageinf_vacc_ma7.json")));
path_join(dir, "pydata/Germany", "vacc_county_ageinf_ma7.json")));
}

return success();
Expand Down
Loading