BDI-pathogens / OpenABM-Covid19

OpenABM-Covid19: an agent-based model for modelling the spread of SARS-CoV-2 (coronavirus) and control interventions for the Covid-19 epidemic
GNU General Public License v3.0
111 stars 76 forks source link

small fix to how vaccinated counts work when immunity wanes #215

Closed ewan-wakeman closed 3 years ago

ewan-wakeman commented 3 years ago

just noticed this when digging through vaccine features.

roberthinch commented 3 years ago

Good catch. Note at the moment the counting only considers all vaccines and does not split out between different vaccines. We'll need to extend this soon. I'll approve this once the tests pass.

ewan-wakeman commented 3 years ago

I currently do this split by running Model.get_individuals() or similar and then creating some groupings on vaccine_status and age_group but having had more of a look through code can't see any reason why these couldn't be added to Model.one_time_step_results() given they're in the event list right?