| Name | Type | Description | Notes |
|---|---|---|---|
| cyp450_mode | Cyp450Mode | [default to Cyp450Mode.COMBINED] | |
| p2_mode | P2Mode | [default to P2Mode.BT_RULE_BASED] | |
| use_db | bool | "Specify if you want to enable the retrieving from database (HMDB) feature." | [optional] [default to True] |
| bio_transformer_sequence_steps | List[BioTransformerSequenceStep] | Specify BioTransformerSequenceSteps to be applied to input structures. MultiStep MetabolicTransformations can only be used as singletons (list size of one). |
from PySirius.models.bio_transformer_parameters import BioTransformerParameters
# TODO update the JSON string below
json = "{}"
# create an instance of BioTransformerParameters from a JSON string
bio_transformer_parameters_instance = BioTransformerParameters.from_json(json)
# print the JSON string representation of the object
print(BioTransformerParameters.to_json())
# convert the object into a dict
bio_transformer_parameters_dict = bio_transformer_parameters_instance.to_dict()
# create an instance of BioTransformerParameters from a dict
bio_transformer_parameters_from_dict = BioTransformerParameters.from_dict(bio_transformer_parameters_dict)