Hi,
I was wondering how to define the step size used by the integrator in the parameter estimation task. I though it would use the one used by the time course task. I tried this with basiCO:
- Initialize integration options
run_time_course(automatic=False, method="lsoda", max_steps=1000000, stepsize=step_size, use_numbers=False)
- Run parameter estimation
run_parameter_estimation(method='Differential Evolution', update_model=True, create_parametersets=True)
However, I've noticed that when I do:
exp_data_par_est, sim_data_par_est = get_simulation_results()
The sampling time of the
sim_data_par_est does not match the step_size I had set, so I guess the options from the
run_time_course() are not passed to
run_parameter_estimation().
Just wondering if there is a way to change the step size in the parameter estimation task. I ask this since I want to extract values in sim_data_par_est that exactly match the sampling times in
exp_data_par_est. Also, out of general curiosity.
Thanks!
Sebastian