Therasabdab Tools¶
Configuration File: therasabdab_tools.json
Tool Type: Local
Tools Count: 4
This page contains all tools defined in the therasabdab_tools.json configuration file.
Available Tools¶
TheraSAbDab_get_all_therapeutics (Type: TheraSAbDabTool)¶
Get summary of all therapeutic antibodies in Thera-SAbDab database. Returns counts by format (IgG…
TheraSAbDab_get_all_therapeutics tool specification
Tool Information:
Name:
TheraSAbDab_get_all_therapeuticsType:
TheraSAbDabToolDescription: Get summary of all therapeutic antibodies in Thera-SAbDab database. Returns counts by format (IgG, bispecific, ADC) and clinical phase. Use for landscape analysis of antibody therapeutics.
Parameters:
No parameters required.
Example Usage:
query = {
"name": "TheraSAbDab_get_all_therapeutics",
"arguments": {
}
}
result = tu.run(query)
TheraSAbDab_get_therapeutic_sequences (Type: TheraSAbDabTool)¶
Get the full curated record for a clinical/approved therapeutic antibody from Thera-SAbDab by WHO…
TheraSAbDab_get_therapeutic_sequences tool specification
Tool Information:
Name:
TheraSAbDab_get_therapeutic_sequencesType:
TheraSAbDabToolDescription: Get the full curated record for a clinical/approved therapeutic antibody from Thera-SAbDab by WHO INN name. Returns the VH/VL amino-acid sequences (heavy1/light1, plus heavy2/light2 for bispecifics), isotype, target antigen, PDB structural coverage at 100%/99%/95-98% sequence identity (struc100/struc99/struc95to98 as ‘pdbid:chains’), originator companies, and approved/active/discontinued conditions. Use for antibody sequence retrieval and developability analysis. No authentication required.
Parameters:
name(string) (optional) WHO INN of the therapeutic antibody (e.g., ‘adalimumab’, ‘abciximab’, ‘pembrolizumab’). Aliases: inn, query.inn(string) (optional) Alias for name.query(string) (optional) Alias for name.
Example Usage:
query = {
"name": "TheraSAbDab_get_therapeutic_sequences",
"arguments": {
}
}
result = tu.run(query)
TheraSAbDab_search_by_target (Type: TheraSAbDabTool)¶
Find therapeutic antibodies targeting a specific antigen. Returns all clinical/approved antibodie…
TheraSAbDab_search_by_target tool specification
Tool Information:
Name:
TheraSAbDab_search_by_targetType:
TheraSAbDabToolDescription: Find therapeutic antibodies targeting a specific antigen. Returns all clinical/approved antibodies against the target (e.g., all anti-PD1 antibodies). Essential for competitive landscape analysis.
Parameters:
target(string) (required) Target antigen name (e.g., ‘PD-1’, ‘HER2’, ‘CD20’, ‘TNF-alpha’, ‘VEGF’)
Example Usage:
query = {
"name": "TheraSAbDab_search_by_target",
"arguments": {
"target": "example_value"
}
}
result = tu.run(query)
TheraSAbDab_search_therapeutics (Type: TheraSAbDabTool)¶
Search therapeutic antibodies by name in Thera-SAbDab. Returns WHO INN name, target antigen, form…
TheraSAbDab_search_therapeutics tool specification
Tool Information:
Name:
TheraSAbDab_search_therapeuticsType:
TheraSAbDabToolDescription: Search therapeutic antibodies by name in Thera-SAbDab. Returns WHO INN name, target antigen, format (IgG, bispecific, ADC), clinical phase, and PDB structures. Use for finding approved/clinical antibody drugs.
Parameters:
query(string) (required) Search query - antibody name (e.g., ‘trastuzumab’, ‘pembrolizumab’, ‘rituximab’)
Example Usage:
query = {
"name": "TheraSAbDab_search_therapeutics",
"arguments": {
"query": "example_value"
}
}
result = tu.run(query)