Source code for sbmlsim.task.task

"""Tasks."""
from typing import Dict


[docs]class Task: """Tasks combine models with simulations. This allows to execute the same simulation with different model variants. """ def __init__(self, model: str, simulation: str): if not isinstance(model, str): raise ValueError( f"Reference to a model must be a string model key, " f"but found: '{model}' of type '{type(model)}'" ) if not isinstance(simulation, str): raise ValueError( f"Reference to a simulation must be a string " f"simulation key, " f"but found: '{model}' of type '{type(model)}'" ) self.model_id = model self.simulation_id = simulation
[docs] def __repr__(self) -> str: """Get representation.""" return f"<sbmlsim.task.Task: {self.model_id}|{self.simulation_id}>"
[docs] def to_dict(self) -> Dict[str, str]: """Convert to dictionary.""" d = { "model": self.model_id, "simulation": self.simulation_id, } return d