Takes a vector of infection incidence (absolute numbers) and returns a tibble with line list data for all individuals in the population. Infected individuals are assigned symptom onset, an incubation periods (if applicable) and confirmation delays from log normal and gamma distributions respectively.

simulate_observations_wrapper(
  incidence,
  times,
  symp_frac = 0.35,
  population_n = length(incidence),
  incu_period_par1 = 1.621,
  incu_period_par2 = 0.418,
  conf_delay_par1 = 5,
  conf_delay_par2 = 2
)