You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Storage location of user database Might be NULL for non-user databases or if default location is used.
[optional]
match_rt_of_reference_spectra
bool
Indicates whether this database shall be used to use retention time information for library matching. Typically used for in-house spectral libraries that have been measured on
[optional] [default to False]
Example
fromPySirius.models.searchable_database_parametersimportSearchableDatabaseParameters# TODO update the JSON string belowjson="{}"# create an instance of SearchableDatabaseParameters from a JSON stringsearchable_database_parameters_instance=SearchableDatabaseParameters.from_json(json)
# print the JSON string representation of the objectprint(SearchableDatabaseParameters.to_json())
# convert the object into a dictsearchable_database_parameters_dict=searchable_database_parameters_instance.to_dict()
# create an instance of SearchableDatabaseParameters from a dictsearchable_database_parameters_from_dict=SearchableDatabaseParameters.from_dict(searchable_database_parameters_dict)