Source code for pharmpy.execute.database

[docs]class ToolDatabase: """Database of results, metadata and run files for one run of a tool This corresponds to the run directory of PsN Attribute: model_database """ def __init__(self, toolname): self.toolname = toolname
[docs]class ModelDatabase: """Database of results for particular model runs This corresponds to the m1 directory and copying up files in PsN """
[docs] def store_local_file(self, model, path): """Store a file from the local machine""" raise NotImplementedError()