A Decision Analytics Model to Optimize Investment in Interventions Targeting the HIV PrEP Cascade of Care
This repository holds the source to code to reproduce the analysis featured in our HIV transmission model evaluating the impact of three clinical HIV PrEP interventions on HIV incidence among men who have sex with men.
Jenness SM, Knowlton G, Smith DK, Marcus JL, Anderson EJ, Siegler AJ, Jones J, Sullivan PS, Enns E. A Decision Analytics Model to Optimize Investment in Interventions Targeting the HIV PrEP Cascade of Care. AIDS. 2021. Online ahead of print. DOI: 10.1097/QAD.0000000000002909.
Gaps between recommended and actual levels of HIV preexposure prophylaxis (PrEP) use remain among men who have sex with men (MSM). Interventions can address these gaps, but it is unknown how public health initiatives should invest prevention funds into these interventions to maximize their population impact.
We used a stochastic network-based HIV transmission model for MSM in the Atlanta area paired with an economic budget optimization model. The model simulated MSM participating in up to three real-world PrEP cascade interventions designed to improve initiation, adherence, or persistence. The primary outcome was infections averted over 10 years. The budget optimization model identified the investment combination under different budgets that maximized this outcome given intervention costs from a payer perspective.
From the base 15% PrEP coverage level, the three interventions could increase coverage to 27%, resulting in 12.3% of infections averted over 10 years. Uptake of each intervention was interdependent: maximal use of the adherence and persistence interventions depended on new PrEP users generated by the initiation intervention. As the budget increased, optimal investment involved a mixture of the initiation and persistence interventions, but not the adherence intervention. If adherence intervention costs were halved, the optimal investment was roughly equal across interventions.
Investments into the PrEP cascade through initiatives should account for the interactions of the interventions as they are collectively deployed. Given current intervention efficacy estimates, the total population impact of each intervention may be improved with greater total budgets or reduced intervention costs.
These models are written and executed in the R statistical software language. To run these files, it is necessary to use the correct version of our epidemic modeling software, EpiModel, and our extension package specifically for modeling HIV/STI transmission dynamics among MSM, EpiModelHIV.
In R, load the necessary packages with the following command:
install.packages("renv")
renv::init()
Once renv
has finished initializing, restart R.
To use this model, you will need a GitHub Private Access Token to install packages from private GitHub repositories (EpiModelHIV-p, ARTNetData). It should be set either in "~/.bashrc":
export GITHUB_PAT="<your github private access token>"
or in "~/.Renviron":
GITHUB_PAT="<your github private access token>"