Omim Tools¶
Configuration File: omim_tools.json
Tool Type: Local
Tools Count: 4
This page contains all tools defined in the omim_tools.json configuration file.
Available Tools¶
OMIM_get_clinical_synopsis (Type: OMIMTool)¶
Get clinical synopsis (phenotype features) for an OMIM phenotype entry. Returns structured clinic…
OMIM_get_clinical_synopsis tool specification
Tool Information:
Name:
OMIM_get_clinical_synopsisType:
OMIMToolDescription: Get clinical synopsis (phenotype features) for an OMIM phenotype entry. Returns structured clinical features organized by body system (e.g., neurologic, cardiovascular). Essential for phenotype-based disease matching. Requires OMIM_API_KEY.
Parameters:
operation(string) (required) Operation type (fixed: get_clinical_synopsis)mim_number(string) (required) OMIM MIM number for phenotype (e.g., 219700 for cystic fibrosis)
Example Usage:
query = {
"name": "OMIM_get_clinical_synopsis",
"arguments": {
"operation": "example_value",
"mim_number": "example_value"
}
}
result = tu.run(query)
OMIM_get_entry (Type: OMIMTool)¶
Get detailed OMIM entry by MIM number. Returns comprehensive information including text descripti…
OMIM_get_entry tool specification
Tool Information:
Name:
OMIM_get_entryType:
OMIMToolDescription: Get detailed OMIM entry by MIM number. Returns comprehensive information including text description, clinical features, inheritance, molecular genetics, and references. MIM numbers are 6-digit identifiers (e.g., 164730 for BRAF gene). Requires OMIM_API_KEY.
Parameters:
operation(string) (required) Operation type (fixed: get_entry)mim_number(string) (required) OMIM MIM number (e.g., 164730, 219700). Can include OMIM: prefix.include(string) (optional) Data sections to include (default: text,clinicalSynopsis,geneMap)
Example Usage:
query = {
"name": "OMIM_get_entry",
"arguments": {
"operation": "example_value",
"mim_number": "example_value"
}
}
result = tu.run(query)
OMIM_get_gene_map (Type: OMIMTool)¶
Get OMIM gene-disease mapping information. Returns genes mapped to chromosomal locations with ass…
OMIM_get_gene_map tool specification
Tool Information:
Name:
OMIM_get_gene_mapType:
OMIMToolDescription: Get OMIM gene-disease mapping information. Returns genes mapped to chromosomal locations with associated phenotypes and inheritance patterns. Query by MIM number or chromosome. Useful for finding all disease genes on a chromosome.
Parameters:
operation(string) (required) Operation type (fixed: get_gene_map)mim_number(string) (optional) OMIM MIM number for specific gene (optional if chromosome provided)chromosome(string) (optional) Chromosome number (1-22, X, Y) to get all genes (optional if mim_number provided)limit(integer) (optional) Maximum results for chromosome query (default: 50, max: 100)
Example Usage:
query = {
"name": "OMIM_get_gene_map",
"arguments": {
"operation": "example_value"
}
}
result = tu.run(query)
OMIM_search (Type: OMIMTool)¶
Search OMIM database for Mendelian diseases and genes. OMIM is the authoritative source for human…
OMIM_search tool specification
Tool Information:
Name:
OMIM_searchType:
OMIMToolDescription: Search OMIM database for Mendelian diseases and genes. OMIM is the authoritative source for human genetic disorders. Search by gene name, disease name, or phenotype keywords. Returns MIM numbers, titles, and entry types. Requires OMIM_API_KEY env var (register at omim.org/api).
Parameters:
operation(string) (required) Operation type (fixed: search)query(string) (required) Search query - gene name (BRCA1), disease (cystic fibrosis), or phenotype (intellectual disability)limit(integer) (optional) Maximum results (default: 10, max: 20)start(integer) (optional) Offset for pagination (default: 0)
Example Usage:
query = {
"name": "OMIM_search",
"arguments": {
"operation": "example_value",
"query": "example_value"
}
}
result = tu.run(query)