Pombase Tools¶
Configuration File: pombase_tools.json
Tool Type: Local
Tools Count: 3
This page contains all tools defined in the pombase_tools.json configuration file.
Available Tools¶
PomBase_get_gene (Type: PomBaseTool)¶
Get detailed gene information from PomBase for fission yeast (S. pombe) by systematic ID. Returns…
PomBase_get_gene tool specification
Tool Information:
Name:
PomBase_get_geneType:
PomBaseToolDescription: Get detailed gene information from PomBase for fission yeast (S. pombe) by systematic ID. Returns gene name, protein product, InterPro domain annotations, deletion viability, UniProt cross-reference, and transmembrane domain coordinates. S. pombe is a key model organism for cell cycle, chromosome biology, and RNA processing research. Example: SPBC11B10.09 returns cdc2 (cyclin-dependent kinase), essential for cell division.
Parameters:
gene_id(string) (required) PomBase systematic gene identifier. Examples: ‘SPBC11B10.09’ (cdc2), ‘SPAC2F7.03c’ (pom1), ‘SPAC1002.17c’ (ase1).
Example Usage:
query = {
"name": "PomBase_get_gene",
"arguments": {
"gene_id": "example_value"
}
}
result = tu.run(query)
PomBase_get_gene_phenotypes (Type: PomBaseTool)¶
Get phenotype annotations for a fission yeast (S. pombe) gene from PomBase. Returns deletion viab…
PomBase_get_gene_phenotypes tool specification
Tool Information:
Name:
PomBase_get_gene_phenotypesType:
PomBaseToolDescription: Get phenotype annotations for a fission yeast (S. pombe) gene from PomBase. Returns deletion viability, FYPO (Fission Yeast Phenotype Ontology) term annotations with evidence codes. S. pombe phenotypes are a key resource for understanding gene function in cell biology. Example: SPBC11B10.09 (cdc2) is inviable when deleted, reflecting its essential role in cell division.
Parameters:
gene_id(string) (required) PomBase systematic gene identifier. Examples: ‘SPBC11B10.09’ (cdc2), ‘SPAC2F7.03c’ (pom1).
Example Usage:
query = {
"name": "PomBase_get_gene_phenotypes",
"arguments": {
"gene_id": "example_value"
}
}
result = tu.run(query)
PomBase_search_genes (Type: PomBaseTool)¶
Search PomBase for fission yeast (S. pombe) genes by name, systematic ID, or protein product keyw…
PomBase_search_genes tool specification
Tool Information:
Name:
PomBase_search_genesType:
PomBaseToolDescription: Search PomBase for fission yeast (S. pombe) genes by name, systematic ID, or protein product keyword. Searches across 12,600+ gene entries. Returns matching genes with systematic IDs, gene names, and protein products. Example: searching ‘kinase’ returns CDK and other kinase genes; searching ‘cdc’ returns cell division cycle genes.
Parameters:
query(string) (required) Search query - gene name, systematic ID prefix, or product keyword. Examples: ‘cdc2’, ‘kinase’, ‘SPAC’, ‘pom1’.limit([‘integer’, ‘null’]) (optional) Maximum results to return (1-50, default 10).
Example Usage:
query = {
"name": "PomBase_search_genes",
"arguments": {
"query": "example_value"
}
}
result = tu.run(query)