Changelog
Source:NEWS.md
MGDrivE2 2.1.0
CRAN release: 2023-03-04
New features:
- Decoupled/Imperial sampling can now calculate malaria-induced severe disease and mortality. See
human_Imperial_ODE
function for implementation details. -
equilibrium_Imperial_decoupled
updated to calculate the total number of mosquitoes given human population parameters.
Bugfixes:
-
human_Imperial_ODE
updated to correctly calculate the per-capita force of infection. Does not fail with suppression constructs anymore due to divide-by-zero error. -
base_female_Imperial
updated with correct mosquito density equations to begin the mosquito population at equilibrium, based on epi parameters.
MGDrivE2 2.0.0
CRAN release: 2022-08-20
New features
- Decoupled epi-mosquito dynamics now implemented with Imperial model of malaria transmission. See Vignettes for details.
-
add_interventions
allows mosquito lifecycle parameters to vary in the presence of LLINs and IRS.
MGDrivE2 1.2.0
New features:
- Function
batch_migration
now takes an additional argumentstages
to allow simulation of batch migration where only one of egg, larval, or pupal stages experiences batch migration events. - Stuff about decoupled epi-mosquito dynamics
Bugfixes, miscellaneous:
- If tracking events using
sim_trajectory_base_CSV
, write to file called “Tracking.csv” instead of “Events.csv” to avoid clashes with summary functionsplit_aggregate_CSV
.
MGDrivE2 1.1.0
CRAN release: 2021-01-13
New features:
- Update to include batch migration, see new file
R/auxiliary-batch.R
and user-facing functionbatch_migration
which sets up the batch migration events. Functionssim_trajectory_R
andsim_trajectory_CSV
now take an additional argumentbatch
which may be set toNULL
if no batch migration is to be simulated. - Added function
get_shape
to get the shape parameter (number of bins) for Erlang developmental delays, given rate parameterq
and coefficient of variationcv
.
Bugfixes, miscellaneous:
- In
sim_trajectory_base_CSV
andsim_trajectory_base_R
the hazards are now correctly evaluated at the start of the time step rather than at the end; [times[i-1],times[i]). Both functions no longer need the (extraneous) argumentdt
. - Remove argument
t0
fromsim_trajectory_base_CSV
andsim_trajectory_base_R
, all simulations are assumed to start at time 0. Change named argumenttt
totmax
. - In
sim_trajectory_base_CSV
andsim_trajectory_base_R
testing for whether to preform a release is now based on a<=
check, rather than equality. - Add argument
n
to functionspn_T_lifecycle_network
to allow simulation of multiple nodes with no migration between them. Useful for debugging as well as for simulation of landscapes where nodes are far enough apart that batch migration is the only way for mosquitoes to travel between nodes.
MGDrivE2 1.0.1
CRAN release: 2020-10-24
Small fixes to address CRAN comments:
-
R/hazard-functions-mosy.R
: functionmake_move_male_haz
has a fix such that the origin/destination probability is correctly calculated. -
R/equilibrium-lifecycle.R
: functionbasic_eq_life
modified to not use the<<-
global assignment operator. -
vignettes/output-storage.Rmd:
replaced absolute path for files withtempdir()
to conform to the CRAN standard. - Edit
DESCRIPTION
to conform to CRAN standard. - Remove
dontrun
code from examples where not necessary and direct users to appropriate vignettes, otherwise run examples.