-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
p.v has a constant asymptomatic infectivity, in contrast to p.f where…
… infectivity is affected by age and immunity. We must therefore change this when asymptomatic infectivity is assigned (when an individual become asymptomatic). This occurs in initial assignments, when someone becomes infected to an asymptomatic status infection and when a clinical diseased individual progresses to asymptomatic. We can use the existing update_infection() function for vivax in human_infection and in disease progression. We can also now remove the gamma1 parameter from the vivax parameter list, used in the falciparum code. The P.v vignette has been extended to include modelled infectivity details.
- Loading branch information
1 parent
4779cef
commit ac353fd
Showing
21 changed files
with
1,782 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
#' Parameter draws | ||
#' Parasite parameters | ||
#' | ||
#' 1000 draws from the joint posterior fit from | ||
#' Parasite-specific parameters for P. falciparum and vivax for use in malariasimulation | ||
#' | ||
#' @format ## `parasite_parameters` | ||
#' A | ||
#' | ||
#' @source <https://www.nature.com/articles/ncomms4136>, <https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6097992/> | ||
"parasite_parameters" | ||
|
||
#' Parameter draws (P. falciparum) | ||
#' | ||
#' @format ## `parameter_draws` | ||
#' A list of 1000 draws from the joint posterior fit from | ||
#' | ||
#' @format ## `parameter_draws_pf` | ||
#' A list of lists of length 1000, each level contains a list of drawn parameters | ||
#' | ||
#' @source <https://www.nature.com/articles/ncomms4136> | ||
"parameter_draws" | ||
"parameter_draws_pf" | ||
|
||
#' Parameter draws (P. vivax) | ||
#' | ||
#' 1000 draws from the joint posterior fit from | ||
#' | ||
#' @format ## `parameter_draws_pv` | ||
#' A list of lists of length 1000, each level contains a list of drawn parameters | ||
#' | ||
#' @source <https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6097992/> | ||
"parameter_draws_pv" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.