Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.32 KB

File metadata and controls

36 lines (27 loc) · 1.32 KB

ComputedSubtools

Specifies which tools have been executed for this feature. Can be used to estimate which results can be expected. Null if it was not requested und non-null otherwise.

Properties

Name Type Description Notes
library_search bool [optional]
formula_search bool [optional]
zodiac bool [optional]
fingerprint bool [optional]
canopus bool [optional]
structure_search bool [optional]
de_novo_search bool [optional]

Example

from PySirius.models.computed_subtools import ComputedSubtools

# TODO update the JSON string below
json = "{}"
# create an instance of ComputedSubtools from a JSON string
computed_subtools_instance = ComputedSubtools.from_json(json)
# print the JSON string representation of the object
print(ComputedSubtools.to_json())

# convert the object into a dict
computed_subtools_dict = computed_subtools_instance.to_dict()
# create an instance of ComputedSubtools from a dict
computed_subtools_from_dict = ComputedSubtools.from_dict(computed_subtools_dict)

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