-
Notifications
You must be signed in to change notification settings - Fork 12
Description
In order for the model to remain relevant into 2021 we need to consider how to incorporate the impact of vaccination and VoC. Both of these issues will require changes to the underlying ODE, and in addition will need external data on timing of VoC introduction (which may not be known and so would be specified with a prior), as well as vaccine distribution by age group. I have some ideas on how to proceed with both of these issues, but would like to hear any other thoughts especially as issues like lack of VoC data could lead to some degeneracy of the likelihood. Outlining the two ideas below:
VoC
Model can be converted into a two-strain model. This would include updating the ODE structure and duplicating both the social-distancing and non social-distancing exposed, infected and quarantined groups. Already produce code for this so that part would be straightforward. Initializing when the new strains are introduced can be achieved through the use of an importation vector which describes when VoC are imported on a day and has the same dimensions as the case data. The structure could be something like c(0,...,0,1,1,...,1)
where 1 indicates VoC are being imported.
Vaccine
We could create an "all-or-nothing" vaccine as for the purposes of this model we are only considering cases and so do not need to consider differences between transmission-blocking and reduction in disease severity for a vaccine type. The main issue is that many jurisdictions are vaccinating by age which would have a differential impact on transmission for a given vaccine dose. A way to approach this is to create a function which converts the daily doses of vaccine by age group, and some age group contact rates and converts it into a contact-rate adjusted vaccination rate. The result of this function can then be incorporating as a stan data vector into the model, which updates the daily rate of vaccine. The model could have this vaccine category included or it could just be removed from the susceptible group.