Geo Tools¶
Configuration File: geo_tools.json
Tool Type: Local
Tools Count: 3
This page contains all tools defined in the geo_tools.json configuration file.
Available Tools¶
geo_get_dataset_info (Type: GEOGetDatasetInfo)¶
Get detailed information about a specific GEO dataset including title, summary, and metadata.
geo_get_dataset_info tool specification
Tool Information:
Name:
geo_get_dataset_infoType:
GEOGetDatasetInfoDescription: Get detailed information about a specific GEO dataset including title, summary, and metadata.
Parameters:
dataset_id(string) (required) GEO dataset ID (e.g., âGDS1234â, âGSE12345â)
Example Usage:
query = {
"name": "geo_get_dataset_info",
"arguments": {
"dataset_id": "example_value"
}
}
result = tu.run(query)
geo_get_sample_info (Type: GEOGetSampleInfo)¶
Get sample information for a GEO dataset including sample characteristics and experimental conditâŠ
geo_get_sample_info tool specification
Tool Information:
Name:
geo_get_sample_infoType:
GEOGetSampleInfoDescription: Get sample information for a GEO dataset including sample characteristics and experimental conditions.
Parameters:
dataset_id(string) (required) GEO dataset ID (e.g., âGDS1234â, âGSE12345â)
Example Usage:
query = {
"name": "geo_get_sample_info",
"arguments": {
"dataset_id": "example_value"
}
}
result = tu.run(query)
geo_search_datasets (Type: GEOSearchDatasets)¶
Search GEO datasets by query terms, organism, study type, or platform. Returns dataset IDs and baâŠ
geo_search_datasets tool specification
Tool Information:
Name:
geo_search_datasetsType:
GEOSearchDatasetsDescription: Search GEO datasets by query terms, organism, study type, or platform. Returns dataset IDs and basic information.
Parameters:
query(string) (optional) Search query terms (e.g., âcancerâ, âdiabetesâ, âmicroarrayâ)organism(string) (optional) Organism name (e.g., âHomo sapiensâ, âMus musculusâ)study_type(string) (optional) Type of study (e.g., âExpression profiling by arrayâ, âExpression profiling by high throughput sequencingâ)platform(string) (optional) Platform used (e.g., âGPL570â, âGPL96â)limit(integer) (optional) Maximum number of results to return
Example Usage:
query = {
"name": "geo_search_datasets",
"arguments": {
}
}
result = tu.run(query)