Modomics Tools¶
Configuration File: modomics_tools.json
Tool Type: Local
Tools Count: 3
This page contains all tools defined in the modomics_tools.json configuration file.
Available Tools¶
MODOMICS_get_modification (Type: MODOMICSTool)¶
Get detailed information about a specific RNA modification from MODOMICS by its numeric ID. Retur…
MODOMICS_get_modification tool specification
Tool Information:
Name:
MODOMICS_get_modificationType:
MODOMICSToolDescription: Get detailed information about a specific RNA modification from MODOMICS by its numeric ID. Returns the full chemical structure (SMILES), molecular formula, average and monoisotopic masses, protonated mass (for mass spectrometry), reference moiety, abbreviation, product ions, and LC elution data. Useful for identifying RNA modifications in mass spectrometry experiments.
Parameters:
modification_id(integer) (required) MODOMICS modification numeric ID. Examples: 78 (pseudouridine), 2 (5,2’-O-dimethylcytidine), 58 (N6-methyladenosine/m6A), 22 (5-methylcytidine/m5C)
Example Usage:
query = {
"name": "MODOMICS_get_modification",
"arguments": {
"modification_id": 10
}
}
result = tu.run(query)
MODOMICS_list_modifications (Type: MODOMICSTool)¶
List all known RNA modifications from the MODOMICS database. Returns modification names, chemical…
MODOMICS_list_modifications tool specification
Tool Information:
Name:
MODOMICS_list_modificationsType:
MODOMICSToolDescription: List all known RNA modifications from the MODOMICS database. Returns modification names, chemical formulas, molecular masses, SMILES structures, and reference moieties (which standard nucleoside the modification derives from: A, C, G, U). MODOMICS catalogs 430+ distinct RNA modifications found across all domains of life. Use limit parameter to control the number of results returned.
Parameters:
limit(integer) (optional) Maximum number of modifications to return (default: 50, max: 500)
Example Usage:
query = {
"name": "MODOMICS_list_modifications",
"arguments": {
}
}
result = tu.run(query)
MODOMICS_search_modifications (Type: MODOMICSTool)¶
Search MODOMICS RNA modifications by name, short name, or chemical formula. Searches across the f…
MODOMICS_search_modifications tool specification
Tool Information:
Name:
MODOMICS_search_modificationsType:
MODOMICSToolDescription: Search MODOMICS RNA modifications by name, short name, or chemical formula. Searches across the full MODOMICS database of 430+ RNA modifications. Query matches against modification name (e.g., ‘pseudouridine’, ‘methyladenosine’), short name (e.g., ‘m6A’, ‘m5C’), or formula. Returns matching modifications with their chemical details.
Parameters:
query(string) (required) Search term to match against modification name, short name, or formula. Examples: ‘pseudouridine’, ‘methyl’, ‘m6A’, ‘inosine’, ‘thio’limit(integer) (optional) Maximum number of results to return (default: 20)
Example Usage:
query = {
"name": "MODOMICS_search_modifications",
"arguments": {
"query": "example_value"
}
}
result = tu.run(query)