Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't run the PI with only coupled/group PI parameters #127

Closed
dlefaudeux opened this issue Apr 11, 2024 · 0 comments · Fixed by #138
Closed

Can't run the PI with only coupled/group PI parameters #127

dlefaudeux opened this issue Apr 11, 2024 · 0 comments · Fixed by #138

Comments

@dlefaudeux
Copy link

When trying to run a parameter identification I ran into a error:
"Error in .validateSimulationIds(ids, parameters, outputMappings) : Mismatch or missing ID detected: [...]. Ensure each Simulation ID matches with corresponding PIParameter and OutputMapping IDs."

It seems to be happening when only grouped PI parameters are given.

How to reproduce:
Using the example in the user-guide, trying to run only on the lipophilicity doesn't work:

works (example in the user-guide):

piTask <- ParameterIdentification$new(
  simulations = list(sim_250mg, sim_500mg),
  parameters = list(piParameterLipo, piParameterCl_250mg, piParameterCl_500mg),
  outputMappings = list(outputMapping_250mg, outputMapping_500mg),
  configuration = piConfiguration
)

doesn' t work:

piTask <- ParameterIdentification$new(
  simulations = list(sim_250mg, sim_500mg),
  parameters = piParameterLipo,
  outputMappings = list(outputMapping_250mg, outputMapping_500mg),
  configuration = piConfiguration
)

@rengelke

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant