Chembl Tools¶
Configuration File: chembl_tools.json
Tool Type: Local
Tools Count: 29
This page contains all tools defined in the chembl_tools.json configuration file.
Available Tools¶
ChEMBL_get_activity (Type: ChEMBLRESTTool)¶
Get detailed information about a specific activity by its activity ID. Activity IDs are found in …
ChEMBL_get_activity tool specification
Tool Information:
Name:
ChEMBL_get_activityType:
ChEMBLRESTToolDescription: Get detailed information about a specific activity by its activity ID. Activity IDs are found in the results from ChEMBL_search_activities or ChEMBL_get_target_activities.
Parameters:
activity_id(string) (required) ChEMBL activity ID
Example Usage:
query = {
"name": "ChEMBL_get_activity",
"arguments": {
"activity_id": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_assay (Type: ChEMBLRESTTool)¶
Get detailed information about an assay by its ChEMBL assay ID. To find an assay ID, use ChEMBL_s…
ChEMBL_get_assay tool specification
Tool Information:
Name:
ChEMBL_get_assayType:
ChEMBLRESTToolDescription: Get detailed information about an assay by its ChEMBL assay ID. To find an assay ID, use ChEMBL_search_assays or ChEMBL_get_target_assays.
Parameters:
assay_chembl_id(string) (required) ChEMBL assay ID, e.g., ‘CHEMBL1217641’format(string) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_assay",
"arguments": {
"assay_chembl_id": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_assay_activities (Type: ChEMBLRESTTool)¶
Get all activity data for an assay by ChEMBL assay ID. Returns bioactivity measurements from the …
ChEMBL_get_assay_activities tool specification
Tool Information:
Name:
ChEMBL_get_assay_activitiesType:
ChEMBLRESTToolDescription: Get all activity data for an assay by ChEMBL assay ID. Returns bioactivity measurements from the specified assay. To find an assay ID, use ChEMBL_search_assays or ChEMBL_get_target_assays.
Parameters:
assay_chembl_id__exact(string) (required) ChEMBL assay ID (e.g., ‘CHEMBL615117’). To find an assay ID, use ChEMBL_search_assays or ChEMBL_get_target_assays.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_assay_activities",
"arguments": {
"assay_chembl_id__exact": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_compound_record (Type: ChEMBLRESTTool)¶
Get compound record information by ChEMBL compound record ID.
ChEMBL_get_compound_record tool specification
Tool Information:
Name:
ChEMBL_get_compound_recordType:
ChEMBLRESTToolDescription: Get compound record information by ChEMBL compound record ID.
Parameters:
compound_record_id(string) (required) ChEMBL compound record ID
Example Usage:
query = {
"name": "ChEMBL_get_compound_record",
"arguments": {
"compound_record_id": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_compound_record_activities (Type: ChEMBLRESTTool)¶
Get all activities for a compound record by compound record ID. Returns bioactivity measurements …
ChEMBL_get_compound_record_activities tool specification
Tool Information:
Name:
ChEMBL_get_compound_record_activitiesType:
ChEMBLRESTToolDescription: Get all activities for a compound record by compound record ID. Returns bioactivity measurements for the specified compound record.
Parameters:
compound_record_id__exact(string) (required) ChEMBL compound record ID. To find a compound record ID, use ChEMBL_get_compound_record or search activities.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_compound_record_activities",
"arguments": {
"compound_record_id__exact": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_drug (Type: ChEMBLRESTTool)¶
Get detailed information about a drug by its ChEMBL drug ID. Includes approval status, indication…
ChEMBL_get_drug tool specification
Tool Information:
Name:
ChEMBL_get_drugType:
ChEMBLRESTToolDescription: Get detailed information about a drug by its ChEMBL drug ID. Includes approval status, indications, and mechanisms. To find a drug ID, use ChEMBL_search_drugs with a drug name.
Parameters:
drug_chembl_id(string) (required) ChEMBL drug ID, e.g., ‘CHEMBL1201581’format(string) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_drug",
"arguments": {
"drug_chembl_id": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_drug_mechanisms (Type: ChEMBLRESTTool)¶
Get mechanisms of action for a drug by ChEMBL drug ID. To find a drug ID, use ChEMBL_search_drugs…
ChEMBL_get_drug_mechanisms tool specification
Tool Information:
Name:
ChEMBL_get_drug_mechanismsType:
ChEMBLRESTToolDescription: Get mechanisms of action for a drug by ChEMBL drug ID. To find a drug ID, use ChEMBL_search_drugs with a drug name.
Parameters:
drug_chembl_id__exact(string) (required) ChEMBL drug ID (e.g., ‘CHEMBL1201581’). To find a drug ID, use ChEMBL_search_drugs with a drug name.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_drug_mechanisms",
"arguments": {
"drug_chembl_id__exact": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_molecule (Type: ChEMBLRESTTool)¶
Get detailed information about a molecule by its ChEMBL ID. Returns molecule properties, structur…
ChEMBL_get_molecule tool specification
Tool Information:
Name:
ChEMBL_get_moleculeType:
ChEMBLRESTToolDescription: Get detailed information about a molecule by its ChEMBL ID. Returns molecule properties, structures, synonyms, and related data.
Parameters:
chembl_id(string) (required) ChEMBL molecule ID, e.g., ‘CHEMBL25’format(string) (optional) Response format
Example Usage:
query = {
"name": "ChEMBL_get_molecule",
"arguments": {
"chembl_id": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_molecule_image (Type: ChEMBLRESTTool)¶
Get molecular structure image (SVG or PNG format) for a molecule by ChEMBL ID. Returns the image …
ChEMBL_get_molecule_image tool specification
Tool Information:
Name:
ChEMBL_get_molecule_imageType:
ChEMBLRESTToolDescription: Get molecular structure image (SVG or PNG format) for a molecule by ChEMBL ID. Returns the image URL and metadata.
Parameters:
chembl_id(string) (required) ChEMBL molecule ID (e.g., ‘CHEMBL25’). To find a molecule ID, use ChEMBL_search_molecules with a molecule name.format(string) (optional) Image format
Example Usage:
query = {
"name": "ChEMBL_get_molecule_image",
"arguments": {
"chembl_id": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_molecule_targets (Type: ChEMBLRESTTool)¶
Get all targets associated with a molecule by ChEMBL ID. Returns targets that have activity data …
ChEMBL_get_molecule_targets tool specification
Tool Information:
Name:
ChEMBL_get_molecule_targetsType:
ChEMBLRESTToolDescription: Get all targets associated with a molecule by ChEMBL ID. Returns targets that have activity data for the specified molecule.
Parameters:
molecule_chembl_id__exact(string) (required) ChEMBL molecule ID (e.g., ‘CHEMBL25’). To find a molecule ID, use ChEMBL_search_molecules with a molecule name.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_molecule_targets",
"arguments": {
"molecule_chembl_id__exact": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_target (Type: ChEMBLRESTTool)¶
Get detailed information about a target (protein, gene, etc.) by its ChEMBL target ID. To find a …
ChEMBL_get_target tool specification
Tool Information:
Name:
ChEMBL_get_targetType:
ChEMBLRESTToolDescription: Get detailed information about a target (protein, gene, etc.) by its ChEMBL target ID. To find a target ID, use ChEMBL_search_targets with a target name or gene symbol.
Parameters:
target_chembl_id(string) (required) ChEMBL target ID (e.g., ‘CHEMBL2074’). To find a target ID, use ChEMBL_search_targets with a target name or gene symbol.format(string) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_target",
"arguments": {
"target_chembl_id": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_target_activities (Type: ChEMBLRESTTool)¶
Get all activity data for a target by ChEMBL target ID. Returns bioactivity measurements (IC50, K…
ChEMBL_get_target_activities tool specification
Tool Information:
Name:
ChEMBL_get_target_activitiesType:
ChEMBLRESTToolDescription: Get all activity data for a target by ChEMBL target ID. Returns bioactivity measurements (IC50, Ki, etc.) for molecules tested against this target. To find a target ID, use ChEMBL_search_targets with a target name or gene symbol.
Parameters:
target_chembl_id__exact(string) (required) ChEMBL target ID (e.g., ‘CHEMBL2074’). To find a target ID, use ChEMBL_search_targets with a target name or gene symbol.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_target_activities",
"arguments": {
"target_chembl_id__exact": "example_value"
}
}
result = tu.run(query)
ChEMBL_get_target_assays (Type: ChEMBLRESTTool)¶
Get all assays associated with a target by ChEMBL target ID. To find a target ID, use ChEMBL_sear…
ChEMBL_get_target_assays tool specification
Tool Information:
Name:
ChEMBL_get_target_assaysType:
ChEMBLRESTToolDescription: Get all assays associated with a target by ChEMBL target ID. To find a target ID, use ChEMBL_search_targets with a target name or gene symbol.
Parameters:
target_chembl_id__exact(string) (required) ChEMBL target ID (e.g., ‘CHEMBL2074’). To find a target ID, use ChEMBL_search_targets with a target name or gene symbol.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_get_target_assays",
"arguments": {
"target_chembl_id__exact": "example_value"
}
}
result = tu.run(query)
ChEMBL_search_activities (Type: ChEMBLRESTTool)¶
Search activity data by molecule, target, assay, or activity values. Supports filtering by IC50, …
ChEMBL_search_activities tool specification
Tool Information:
Name:
ChEMBL_search_activitiesType:
ChEMBLRESTToolDescription: Search activity data by molecule, target, assay, or activity values. Supports filtering by IC50, Ki, EC50, etc. Note: activity data is sparse and depends on curation; some specific filter combinations can legitimately return zero results. For reliable retrieval, prefer starting from a known target (target_chembl_id__exact) or assay (assay_chembl_id__exact). To find molecule or target IDs, use ChEMBL_search_molecules or ChEMBL_search_targets.
Parameters:
molecule_chembl_id(string) (optional) Filter by molecule ChEMBL IDtarget_chembl_id(string) (optional) Filter by target ChEMBL IDassay_chembl_id(string) (optional) Filter by assay ChEMBL IDstandard_type(string) (optional) Filter by activity type (e.g., ‘IC50’, ‘Ki’, ‘EC50’)standard_value__lte(number) (optional) Filter by maximum activity valuestandard_value__gte(number) (optional) Filter by minimum activity valuefields(array) (optional) Optional list of ChEMBL activity fields to include in each returned activity object (projection). ToolUniverse maps this to ChEMBL’s only query parameter (comma-separated). Supported fields: activity_id, molecule_chembl_id, target_chembl_id, assay_chembl_id, standard_type, standard_value, standard_units, pchembl_value, standard_relation, standard_flag.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_activities",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_assays (Type: ChEMBLRESTTool)¶
Search assays by various criteria including assay type, target, organism. Use this tool to find a…
ChEMBL_search_assays tool specification
Tool Information:
Name:
ChEMBL_search_assaysType:
ChEMBLRESTToolDescription: Search assays by various criteria including assay type, target, organism. Use this tool to find assay ChEMBL IDs needed for other tools.
Parameters:
assay_chembl_id(string) (optional) Filter by assay ChEMBL IDassay_type(string) (optional) Filter by assay type (e.g., ‘B’, ‘F’, ‘A’)target_chembl_id(string) (optional) Filter by target ChEMBL IDfields(array) (optional) Optional list of ChEMBL assay fields to include in each returned assay object (projection). ToolUniverse maps this to ChEMBL’s only query parameter (comma-separated). Supported fields: assay_chembl_id, description, assay_type, confidence_score, target_chembl_id, assay_organism, bao_label.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_assays",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_atc_classification (Type: ChEMBLRESTTool)¶
Search ATC (Anatomical Therapeutic Chemical) classifications for drugs. To find a drug ID, use Ch…
ChEMBL_search_atc_classification tool specification
Tool Information:
Name:
ChEMBL_search_atc_classificationType:
ChEMBLRESTToolDescription: Search ATC (Anatomical Therapeutic Chemical) classifications for drugs. To find a drug ID, use ChEMBL_search_drugs.
Parameters:
drug_chembl_id(string) (optional) Filter by drug ChEMBL IDlevel4(string) (optional) Filter by ATC level 4 codelimit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_atc_classification",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_binding_sites (Type: ChEMBLRESTTool)¶
Search binding sites by target, site name, or other criteria.
ChEMBL_search_binding_sites tool specification
Tool Information:
Name:
ChEMBL_search_binding_sitesType:
ChEMBLRESTToolDescription: Search binding sites by target, site name, or other criteria.
Parameters:
target_chembl_id(string) (optional) Filter by target ChEMBL IDsite_name__contains(string) (optional) Filter by site name (contains)limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_binding_sites",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_cell_lines (Type: ChEMBLRESTTool)¶
Search cell lines used in ChEMBL assays.
ChEMBL_search_cell_lines tool specification
Tool Information:
Name:
ChEMBL_search_cell_linesType:
ChEMBLRESTToolDescription: Search cell lines used in ChEMBL assays.
Parameters:
cell_chembl_id(string) (optional) Filter by cell line ChEMBL IDcell_name__contains(string) (optional) Filter by cell line name (contains)limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_cell_lines",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_compound_structural_alerts (Type: ChEMBLRESTTool)¶
Search compound structural alerts (toxicity warnings) by molecule or alert type.
ChEMBL_search_compound_structural_alerts tool specification
Tool Information:
Name:
ChEMBL_search_compound_structural_alertsType:
ChEMBLRESTToolDescription: Search compound structural alerts (toxicity warnings) by molecule or alert type.
Parameters:
molecule_chembl_id(string) (optional) Filter by molecule ChEMBL IDalert_name__contains(string) (optional) Filter by alert name (contains)limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_compound_structural_alerts",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_documents (Type: ChEMBLRESTTool)¶
Search ChEMBL documents (publications) by various criteria.
ChEMBL_search_documents tool specification
Tool Information:
Name:
ChEMBL_search_documentsType:
ChEMBLRESTToolDescription: Search ChEMBL documents (publications) by various criteria.
Parameters:
document_id(string) (optional) Filter by document IDtitle__contains(string) (optional) Filter by document title (contains)limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_documents",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_drugs (Type: ChEMBLRESTTool)¶
Search drugs by name, approval status, or other criteria.
ChEMBL_search_drugs tool specification
Tool Information:
Name:
ChEMBL_search_drugsType:
ChEMBLRESTToolDescription: Search drugs by name, approval status, or other criteria.
Parameters:
drug_chembl_id(string) (optional) Filter by drug ChEMBL IDpref_name__contains(string) (optional) Filter by drug name (contains)max_phase(integer) (optional) Filter by maximum development phase (0-4)limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_drugs",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_mechanisms (Type: ChEMBLRESTTool)¶
Search mechanisms of action by drug, target, or mechanism type. To find drug or target IDs, use C…
ChEMBL_search_mechanisms tool specification
Tool Information:
Name:
ChEMBL_search_mechanismsType:
ChEMBLRESTToolDescription: Search mechanisms of action by drug, target, or mechanism type. To find drug or target IDs, use ChEMBL_search_drugs or ChEMBL_search_targets.
Parameters:
drug_chembl_id(string) (optional) Filter by drug ChEMBL IDtarget_chembl_id(string) (optional) Filter by target ChEMBL IDmechanism_of_action__contains(string) (optional) Filter by mechanism description (contains)limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_mechanisms",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_molecules (Type: ChEMBLRESTTool)¶
Search molecules by name, ChEMBL ID, or other criteria. Supports filtering and pagination. Note: …
ChEMBL_search_molecules tool specification
Tool Information:
Name:
ChEMBL_search_moleculesType:
ChEMBLRESTToolDescription: Search molecules by name, ChEMBL ID, or other criteria. Supports filtering and pagination. Note: some text-based filters (especially pref_name__contains) may legitimately return zero results because pref_name coverage is incomplete and may not contain common drug names. For reliable retrieval, prefer ID-based filters like molecule_chembl_id or use ChEMBL_get_molecule when you already have a ChEMBL ID.
Parameters:
molecule_chembl_id(string) (optional) Filter by ChEMBL ID (exact match)pref_name__contains(string) (optional) Filter by preferred name (contains). Note: pref_name coverage is incomplete in ChEMBL, so this can legitimately return zero results even for common names; prefer molecule_chembl_id for reliable retrieval.molecule_type(string) (optional) Filter by molecule type (e.g., ‘Small molecule’, ‘Antibody’)fields(array) (optional) Optional list of ChEMBL molecule fields to include in each returned molecule object (projection). ToolUniverse maps this to ChEMBL’s only query parameter (comma-separated). Supported fields: molecule_chembl_id, pref_name, molecule_type, max_phase, first_approval, black_box_warning, withdrawn_flag, molecule_structures, molecule_properties.limit(integer) (optional) Maximum number of results (default: 20, max: 1000)offset(integer) (optional) Offset for pagination (default: 0)format(string) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_molecules",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_protein_classification (Type: ChEMBLRESTTool)¶
Search protein classifications by target, classification type, or other criteria. To find a targe…
ChEMBL_search_protein_classification tool specification
Tool Information:
Name:
ChEMBL_search_protein_classificationType:
ChEMBLRESTToolDescription: Search protein classifications by target, classification type, or other criteria. To find a target ID, use ChEMBL_search_targets.
Parameters:
target_chembl_id(string) (optional) Filter by target ChEMBL IDprotein_class_id(string) (optional) Filter by protein class IDlimit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_protein_classification",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_similar_molecules (Type: ChEMBLTool)¶
Search for molecules similar to a given SMILES, chembl_id, or compound or drug name, using the Ch…
ChEMBL_search_similar_molecules tool specification
Tool Information:
Name:
ChEMBL_search_similar_moleculesType:
ChEMBLToolDescription: Search for molecules similar to a given SMILES, chembl_id, or compound or drug name, using the ChEMBL Web Services. Note: This tool is designed for small molecule compounds only. Biologics (antibodies, proteins, oligonucleotides, etc.) do not have SMILES structures and cannot be used for similarity search. For biologics similarity search, use BLAST_protein_search (requires amino acid sequence) or UniProt_search. For small molecules, use PubChem_search_compounds_by_similarity (requires SMILES input).
Parameters:
query(string) (required) SMILES string, chembl_id, or compound or drug name. Note: Only small molecule compounds are supported. Biologics (antibodies, proteins, etc.) will return an error as they lack SMILES structures.similarity_threshold(integer) (required) Similarity threshold (0–100).max_results(integer) (required) Maximum number of results to return.
Example Usage:
query = {
"name": "ChEMBL_search_similar_molecules",
"arguments": {
"query": "example_value",
"similarity_threshold": 10,
"max_results": 10
}
}
result = tu.run(query)
ChEMBL_search_similarity (Type: ChEMBLRESTTool)¶
Search molecules similar to a given SMILES string using Tanimoto similarity. Returns molecules wi…
ChEMBL_search_similarity tool specification
Tool Information:
Name:
ChEMBL_search_similarityType:
ChEMBLRESTToolDescription: Search molecules similar to a given SMILES string using Tanimoto similarity. Returns molecules with similarity above the threshold.
Parameters:
smiles(string) (required) SMILES string to search for similar moleculesthreshold(integer) (required) Similarity threshold (0-100). Molecules with similarity >= threshold will be returned.limit(integer) (optional) Maximum number of results (default: 20, max: 1000)offset(integer) (optional) Offset for pagination (default: 0)
Example Usage:
query = {
"name": "ChEMBL_search_similarity",
"arguments": {
"smiles": "example_value",
"threshold": 10
}
}
result = tu.run(query)
ChEMBL_search_substructure (Type: ChEMBLRESTTool)¶
Search molecules by substructure using SMILES. Returns molecules containing the specified substru…
ChEMBL_search_substructure tool specification
Tool Information:
Name:
ChEMBL_search_substructureType:
ChEMBLRESTToolDescription: Search molecules by substructure using SMILES. Returns molecules containing the specified substructure.
Parameters:
smiles(string) (required) SMILES string representing the substructure to search forlimit(integer) (optional) Maximum number of results (default: 20, max: 1000)offset(integer) (optional) Offset for pagination (default: 0)
Example Usage:
query = {
"name": "ChEMBL_search_substructure",
"arguments": {
"smiles": "example_value"
}
}
result = tu.run(query)
ChEMBL_search_targets (Type: ChEMBLRESTTool)¶
Search targets by name, organism, target type, or other criteria. Use this tool to find target Ch…
ChEMBL_search_targets tool specification
Tool Information:
Name:
ChEMBL_search_targetsType:
ChEMBLRESTToolDescription: Search targets by name, organism, target type, or other criteria. Use this tool to find target ChEMBL IDs needed for other tools.
Parameters:
target_chembl_id(string) (optional) Filter by target ChEMBL IDpref_name__contains(string) (optional) Filter by target name (contains)organism(string) (optional) Filter by organism (e.g., ‘Homo sapiens’)target_type(string) (optional) Filter by target type (e.g., ‘SINGLE PROTEIN’, ‘PROTEIN COMPLEX’)fields(array) (optional) Optional list of ChEMBL target fields to include in each returned target object (projection). ToolUniverse maps this to ChEMBL’s only query parameter (comma-separated). Supported fields: target_chembl_id, pref_name, organism, target_type, target_components.limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_targets",
"arguments": {
}
}
result = tu.run(query)
ChEMBL_search_tissue (Type: ChEMBLRESTTool)¶
Search tissues used in ChEMBL assays.
ChEMBL_search_tissue tool specification
Tool Information:
Name:
ChEMBL_search_tissueType:
ChEMBLRESTToolDescription: Search tissues used in ChEMBL assays.
Parameters:
tissue_chembl_id(string) (optional) Filter by tissue ChEMBL IDpref_name__contains(string) (optional) Filter by tissue name (contains)limit(integer) (optional) No descriptionoffset(integer) (optional) No description
Example Usage:
query = {
"name": "ChEMBL_search_tissue",
"arguments": {
}
}
result = tu.run(query)