Targetmine Tools¶
Configuration File: targetmine_tools.json
Tool Type: Local
Tools Count: 2
This page contains all tools defined in the targetmine_tools.json configuration file.
Available Tools¶
TargetMine_search (Type: BaseRESTTool)¶
Search TargetMine, the InterMine data warehouse focused on drug target discovery and prioritizati…
TargetMine_search tool specification
Tool Information:
Name:
TargetMine_searchType:
BaseRESTToolDescription: Search TargetMine, the InterMine data warehouse focused on drug target discovery and prioritization. TargetMine integrates data from UniProt, PDB, ChEMBL, Reactome, KEGG, DrugBank, TTD, and clinical trials databases. Searches across genes, proteins, pathways, disease terms, drugs, and biomarkers. Use this to find drug targets, investigate target-disease associations, and explore chemical-genomics data. Filter by facet_Category for specific entity types (e.g., ‘Gene’, ‘Protein’, ‘Pathway’, ‘DiseaseTerm’, ‘IPFBiomarker’, ‘IPFTrial’).
Parameters:
q(string) (required) Search query: gene symbol (e.g., ‘TP53’, ‘EGFR’, ‘BRCA1’), protein name, drug name, disease term, or free text.size(integer) (optional) Number of results to return (default: 10).format(string) (optional) Response format. Must be ‘json’.facet_Category(string) (optional) Filter by entity category. Options: ‘Gene’, ‘Protein’, ‘Pathway’, ‘DiseaseTerm’, ‘DiseaseConcept’, ‘IPFBiomarker’, ‘IPFTrial’, ‘WHOTrial’, ‘IPF’, ‘UMLSTerm’, ‘MeshTerm’, ‘EFOTerm’, ‘DOTerm’, ‘GOTerm’, ‘Transcript’, ‘Exon’, ‘MRNA’, ‘IntegratedPathwayCluster’, ‘TbcAnnotation’.
Example Usage:
query = {
"name": "TargetMine_search",
"arguments": {
"q": "example_value"
}
}
result = tu.run(query)
TargetMine_search_genes (Type: BaseRESTTool)¶
Search TargetMine specifically for genes relevant to drug target discovery. This convenience wrap…
TargetMine_search_genes tool specification
Tool Information:
Name:
TargetMine_search_genesType:
BaseRESTToolDescription: Search TargetMine specifically for genes relevant to drug target discovery. This convenience wrapper filters results to the Gene category. Returns gene symbols, NCBI Gene IDs, organism information, and gene names. TargetMine covers human, rat, mouse, and other model organism genes with extensive drug target annotations. For broader searches across all entity types, use TargetMine_search instead.
Parameters:
q(string) (required) Gene search query: gene symbol (e.g., ‘TP53’, ‘EGFR’, ‘BRCA1’), Entrez Gene ID, or keyword.size(integer) (optional) Number of results to return (default: 10).
Example Usage:
query = {
"name": "TargetMine_search_genes",
"arguments": {
"q": "example_value"
}
}
result = tu.run(query)