Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.53 KB

File metadata and controls

32 lines (23 loc) · 1.53 KB

BioTransformerParameters

Properties

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).

Example

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)

[Back to Model list] [Back to API list] [Back to README]