Convert your qualification plan to Excel for easy editing, then convert back as a qualification plan with ospsuite.qualificationplaneditor.
You can install the development version of ospsuite.qualificationplaneditor like so:
remotes::install_github("Open-Systems-Pharmacology/OSPSuite.QualificationPlanEditor")
Here is a basic example showing how to include an updated project snapshot into your qualification plan:
## Load the ospsuite.qualificationplaneditor package
library(ospsuite.qualificationplaneditor)
ospPath <- "https://raw.githubusercontent.com/Open-Systems-Pharmacology"
excelQualification <- "Updated-Qualification.xlsx"
# List your updated snapshot projects
snapshotPaths <- list(
"Compound A" = file.path(ospPath, "A-Model/vX.X/A-Model.json"),
"Compound B" = file.path(ospPath, "B-Model/vX.X/B-Model.json"),
"A-B-DDI" = file.path(ospPath, "A-B-DDI/vX.X/A-B-DDI.json")
)
# List your updated observed datasets
observedDataPaths <- list("DDI Ratios" = list(
Path = file.path(ospPath, "Database-for-observed-data/vX.X/DDI.csv"),
Type = "DDIRatio"
))
# Initial qualification plan
qualificationPlan <- file.path(ospPath, "A-Model/vY.Y/Qualification/qualification_plan.json")
# qualification plan converted to Excel
excelUI(
fileName = excelQualification,
snapshotPaths = snapshotPaths,
observedDataPaths = observedDataPaths,
qualificationPlan = qualificationPlan
)
# Tip: this will open Excel (or Libre office) with the created Excel workbook
utils::browseURL(excelQualification)
Everyone interacting in the Open Systems Pharmacology community (codebases, issue trackers, chat rooms, mailing lists etc.) is expected to follow the Open Systems Pharmacology code of conduct.
We encourage contribution to the Open Systems Pharmacology community. Before getting started please read the contribution guidelines. If you are contributing code, please be familiar with the coding standards.
ospsuite.qualificationplaneditor package is released under the GPLv2 License.
All trademarks within this document belong to their legitimate owners.