Skip to content

Load biomodel

Function for loading the BioModel.

ModelData

Bases: BaseModel

Base model for the model data.

Source code in aiagents4pharma/talk2biomodels/tools/load_biomodel.py
21
22
23
24
25
26
27
class ModelData(BaseModel):
    """
    Base model for the model data.
    """
    biomodel_id: Annotated[Union[int, str], BeforeValidator(ensure_biomodel_id)] = None
    # sbml_file_path: Optional[str] = None
    use_uploaded_sbml_file: bool = False

ensure_biomodel_id(value)

Ensure that the biomodel_id is an integer or a string starting with 'BIOMD' or 'MODEL'.

Source code in aiagents4pharma/talk2biomodels/tools/load_biomodel.py
11
12
13
14
15
16
17
18
19
def ensure_biomodel_id(value: Any) -> Any:
    """
    Ensure that the biomodel_id is an integer or a string starting with 'BIOMD' or 'MODEL'.
    """
    if isinstance(value, int):
        return value
    if isinstance(value, str) and (value.startswith("BIOMD") or value.startswith("MODEL")):
        return value
    raise ValueError("biomodel_id must be an integer or a string starting with 'BIOMD' or 'MODEL'.")

load_biomodel(sys_bio_model, sbml_file_path=None)

Load the BioModel.

Source code in aiagents4pharma/talk2biomodels/tools/load_biomodel.py
29
30
31
32
33
34
35
36
37
38
def load_biomodel(sys_bio_model, sbml_file_path=None):
    """
    Load the BioModel.
    """
    model_object = None
    if sys_bio_model.biomodel_id:
        model_object = BasicoModel(biomodel_id=sys_bio_model.biomodel_id)
    elif sbml_file_path:
        model_object = BasicoModel(sbml_file_path=sbml_file_path)
    return model_object