tooluniverse 1.0.9.1__py3-none-any.whl → 1.0.11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tooluniverse might be problematic. Click here for more details.
- tooluniverse/__init__.py +57 -1
- tooluniverse/admetai_tool.py +1 -1
- tooluniverse/agentic_tool.py +65 -17
- tooluniverse/base_tool.py +19 -8
- tooluniverse/blast_tool.py +132 -0
- tooluniverse/boltz_tool.py +3 -3
- tooluniverse/cache/result_cache_manager.py +167 -12
- tooluniverse/cbioportal_tool.py +42 -0
- tooluniverse/clinvar_tool.py +268 -74
- tooluniverse/compose_scripts/drug_safety_analyzer.py +1 -1
- tooluniverse/compose_scripts/multi_agent_literature_search.py +1 -1
- tooluniverse/compose_scripts/output_summarizer.py +4 -4
- tooluniverse/compose_scripts/tool_discover.py +1941 -443
- tooluniverse/compose_scripts/tool_graph_composer.py +1 -1
- tooluniverse/compose_scripts/tool_metadata_generator.py +1 -1
- tooluniverse/compose_tool.py +9 -9
- tooluniverse/core_tool.py +2 -2
- tooluniverse/ctg_tool.py +4 -4
- tooluniverse/custom_tool.py +1 -1
- tooluniverse/data/agentic_tools.json +0 -370
- tooluniverse/data/alphafold_tools.json +6 -6
- tooluniverse/data/blast_tools.json +112 -0
- tooluniverse/data/cbioportal_tools.json +87 -0
- tooluniverse/data/clinvar_tools.json +235 -0
- tooluniverse/data/compose_tools.json +0 -89
- tooluniverse/data/dbsnp_tools.json +275 -0
- tooluniverse/data/emdb_tools.json +61 -0
- tooluniverse/data/ensembl_tools.json +259 -0
- tooluniverse/data/file_download_tools.json +275 -0
- tooluniverse/data/geo_tools.json +200 -48
- tooluniverse/data/gnomad_tools.json +109 -0
- tooluniverse/data/gtopdb_tools.json +68 -0
- tooluniverse/data/gwas_tools.json +32 -0
- tooluniverse/data/interpro_tools.json +199 -0
- tooluniverse/data/jaspar_tools.json +70 -0
- tooluniverse/data/kegg_tools.json +356 -0
- tooluniverse/data/mpd_tools.json +87 -0
- tooluniverse/data/ols_tools.json +314 -0
- tooluniverse/data/package_discovery_tools.json +64 -0
- tooluniverse/data/packages/categorized_tools.txt +0 -1
- tooluniverse/data/packages/machine_learning_tools.json +0 -47
- tooluniverse/data/paleobiology_tools.json +91 -0
- tooluniverse/data/pride_tools.json +62 -0
- tooluniverse/data/pypi_package_inspector_tools.json +158 -0
- tooluniverse/data/python_executor_tools.json +341 -0
- tooluniverse/data/regulomedb_tools.json +50 -0
- tooluniverse/data/remap_tools.json +89 -0
- tooluniverse/data/screen_tools.json +89 -0
- tooluniverse/data/tool_discovery_agents.json +428 -0
- tooluniverse/data/tool_discovery_agents.json.backup +1343 -0
- tooluniverse/data/uniprot_tools.json +77 -0
- tooluniverse/data/web_search_tools.json +250 -0
- tooluniverse/data/worms_tools.json +55 -0
- tooluniverse/dataset_tool.py +2 -2
- tooluniverse/dbsnp_tool.py +196 -58
- tooluniverse/default_config.py +36 -3
- tooluniverse/emdb_tool.py +30 -0
- tooluniverse/enrichr_tool.py +14 -14
- tooluniverse/ensembl_tool.py +140 -47
- tooluniverse/execute_function.py +594 -29
- tooluniverse/extended_hooks.py +4 -4
- tooluniverse/file_download_tool.py +269 -0
- tooluniverse/gene_ontology_tool.py +1 -1
- tooluniverse/generate_tools.py +3 -3
- tooluniverse/geo_tool.py +81 -28
- tooluniverse/gnomad_tool.py +100 -52
- tooluniverse/gtopdb_tool.py +41 -0
- tooluniverse/humanbase_tool.py +10 -10
- tooluniverse/interpro_tool.py +72 -0
- tooluniverse/jaspar_tool.py +30 -0
- tooluniverse/kegg_tool.py +230 -0
- tooluniverse/logging_config.py +2 -2
- tooluniverse/mcp_client_tool.py +57 -129
- tooluniverse/mcp_integration.py +52 -49
- tooluniverse/mcp_tool_registry.py +147 -528
- tooluniverse/mpd_tool.py +42 -0
- tooluniverse/ncbi_eutils_tool.py +96 -0
- tooluniverse/ols_tool.py +435 -0
- tooluniverse/openalex_tool.py +8 -8
- tooluniverse/openfda_tool.py +2 -2
- tooluniverse/output_hook.py +15 -15
- tooluniverse/package_discovery_tool.py +217 -0
- tooluniverse/package_tool.py +1 -1
- tooluniverse/paleobiology_tool.py +30 -0
- tooluniverse/pmc_tool.py +2 -2
- tooluniverse/pride_tool.py +30 -0
- tooluniverse/pypi_package_inspector_tool.py +593 -0
- tooluniverse/python_executor_tool.py +711 -0
- tooluniverse/regulomedb_tool.py +30 -0
- tooluniverse/remap_tool.py +44 -0
- tooluniverse/remote/boltz/boltz_mcp_server.py +1 -1
- tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +3 -3
- tooluniverse/remote/immune_compass/compass_tool.py +3 -3
- tooluniverse/remote/pinnacle/pinnacle_tool.py +2 -2
- tooluniverse/remote/transcriptformer/transcriptformer_tool.py +3 -3
- tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +3 -3
- tooluniverse/remote_tool.py +4 -4
- tooluniverse/screen_tool.py +44 -0
- tooluniverse/scripts/filter_tool_files.py +2 -2
- tooluniverse/smcp.py +93 -12
- tooluniverse/smcp_server.py +100 -21
- tooluniverse/space/__init__.py +46 -0
- tooluniverse/space/loader.py +133 -0
- tooluniverse/space/validator.py +353 -0
- tooluniverse/tool_finder_embedding.py +5 -3
- tooluniverse/tool_finder_keyword.py +12 -10
- tooluniverse/tool_finder_llm.py +12 -8
- tooluniverse/tools/{UCSC_get_genes_by_region.py → BLAST_nucleotide_search.py} +22 -26
- tooluniverse/tools/BLAST_protein_search.py +63 -0
- tooluniverse/tools/ClinVar_search_variants.py +26 -15
- tooluniverse/tools/CodeQualityAnalyzer.py +3 -3
- tooluniverse/tools/EMDB_get_structure.py +46 -0
- tooluniverse/tools/GtoPdb_get_targets.py +52 -0
- tooluniverse/tools/InterPro_get_domain_details.py +46 -0
- tooluniverse/tools/InterPro_get_protein_domains.py +49 -0
- tooluniverse/tools/InterPro_search_domains.py +52 -0
- tooluniverse/tools/JASPAR_get_transcription_factors.py +52 -0
- tooluniverse/tools/MPD_get_phenotype_data.py +59 -0
- tooluniverse/tools/PRIDE_search_proteomics.py +52 -0
- tooluniverse/tools/PackageAnalyzer.py +55 -0
- tooluniverse/tools/Paleobiology_get_fossils.py +52 -0
- tooluniverse/tools/PyPIPackageInspector.py +59 -0
- tooluniverse/tools/ReMap_get_transcription_factor_binding.py +59 -0
- tooluniverse/tools/ReferenceInfoAnalyzer.py +55 -0
- tooluniverse/tools/RegulomeDB_query_variant.py +46 -0
- tooluniverse/tools/SCREEN_get_regulatory_elements.py +59 -0
- tooluniverse/tools/{ArgumentDescriptionOptimizer.py → TestResultsAnalyzer.py} +13 -13
- tooluniverse/tools/ToolDiscover.py +11 -11
- tooluniverse/tools/UniProt_id_mapping.py +63 -0
- tooluniverse/tools/UniProt_search.py +63 -0
- tooluniverse/tools/UnifiedToolGenerator.py +59 -0
- tooluniverse/tools/WoRMS_search_species.py +49 -0
- tooluniverse/tools/XMLToolOptimizer.py +55 -0
- tooluniverse/tools/__init__.py +119 -29
- tooluniverse/tools/_shared_client.py +3 -3
- tooluniverse/tools/alphafold_get_annotations.py +3 -3
- tooluniverse/tools/alphafold_get_prediction.py +3 -3
- tooluniverse/tools/alphafold_get_summary.py +3 -3
- tooluniverse/tools/cBioPortal_get_cancer_studies.py +46 -0
- tooluniverse/tools/cBioPortal_get_mutations.py +52 -0
- tooluniverse/tools/{gnomAD_query_variant.py → clinvar_get_clinical_significance.py} +8 -11
- tooluniverse/tools/clinvar_get_variant_details.py +49 -0
- tooluniverse/tools/dbSNP_get_variant_by_rsid.py +7 -7
- tooluniverse/tools/dbsnp_get_frequencies.py +46 -0
- tooluniverse/tools/dbsnp_search_by_gene.py +52 -0
- tooluniverse/tools/download_binary_file.py +66 -0
- tooluniverse/tools/download_file.py +71 -0
- tooluniverse/tools/download_text_content.py +55 -0
- tooluniverse/tools/dynamic_package_discovery.py +59 -0
- tooluniverse/tools/ensembl_get_sequence.py +52 -0
- tooluniverse/tools/{Ensembl_lookup_gene_by_symbol.py → ensembl_get_variants.py} +11 -11
- tooluniverse/tools/ensembl_lookup_gene.py +46 -0
- tooluniverse/tools/geo_get_dataset_info.py +46 -0
- tooluniverse/tools/geo_get_sample_info.py +46 -0
- tooluniverse/tools/geo_search_datasets.py +67 -0
- tooluniverse/tools/gnomad_get_gene_constraints.py +49 -0
- tooluniverse/tools/kegg_find_genes.py +52 -0
- tooluniverse/tools/kegg_get_gene_info.py +46 -0
- tooluniverse/tools/kegg_get_pathway_info.py +46 -0
- tooluniverse/tools/kegg_list_organisms.py +44 -0
- tooluniverse/tools/kegg_search_pathway.py +46 -0
- tooluniverse/tools/ols_find_similar_terms.py +63 -0
- tooluniverse/tools/{get_hyperopt_info.py → ols_get_ontology_info.py} +13 -10
- tooluniverse/tools/ols_get_term_ancestors.py +67 -0
- tooluniverse/tools/ols_get_term_children.py +67 -0
- tooluniverse/tools/{TestCaseGenerator.py → ols_get_term_info.py} +12 -9
- tooluniverse/tools/{CodeOptimizer.py → ols_search_ontologies.py} +22 -14
- tooluniverse/tools/ols_search_terms.py +71 -0
- tooluniverse/tools/python_code_executor.py +79 -0
- tooluniverse/tools/python_script_runner.py +79 -0
- tooluniverse/tools/web_api_documentation_search.py +63 -0
- tooluniverse/tools/web_search.py +71 -0
- tooluniverse/uniprot_tool.py +219 -16
- tooluniverse/url_tool.py +19 -1
- tooluniverse/uspto_tool.py +1 -1
- tooluniverse/utils.py +12 -12
- tooluniverse/web_search_tool.py +229 -0
- tooluniverse/worms_tool.py +64 -0
- {tooluniverse-1.0.9.1.dist-info → tooluniverse-1.0.11.dist-info}/METADATA +8 -3
- {tooluniverse-1.0.9.1.dist-info → tooluniverse-1.0.11.dist-info}/RECORD +184 -92
- tooluniverse/data/genomics_tools.json +0 -174
- tooluniverse/tools/ToolDescriptionOptimizer.py +0 -67
- tooluniverse/tools/ToolImplementationGenerator.py +0 -67
- tooluniverse/tools/ToolOptimizer.py +0 -59
- tooluniverse/tools/ToolSpecificationGenerator.py +0 -67
- tooluniverse/tools/ToolSpecificationOptimizer.py +0 -63
- tooluniverse/ucsc_tool.py +0 -60
- {tooluniverse-1.0.9.1.dist-info → tooluniverse-1.0.11.dist-info}/WHEEL +0 -0
- {tooluniverse-1.0.9.1.dist-info → tooluniverse-1.0.11.dist-info}/entry_points.txt +0 -0
- {tooluniverse-1.0.9.1.dist-info → tooluniverse-1.0.11.dist-info}/licenses/LICENSE +0 -0
- {tooluniverse-1.0.9.1.dist-info → tooluniverse-1.0.11.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "OLSTool",
|
|
4
|
+
"name": "ols_search_terms",
|
|
5
|
+
"description": "Search for terms in OLS (Ontology Lookup Service)",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"operation": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"const": "search_terms",
|
|
12
|
+
"description": "The operation to perform (search_terms)"
|
|
13
|
+
},
|
|
14
|
+
"query": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "The search query for terms"
|
|
17
|
+
},
|
|
18
|
+
"rows": {
|
|
19
|
+
"type": "integer",
|
|
20
|
+
"description": "Number of results to return (default: 10)",
|
|
21
|
+
"default": 10
|
|
22
|
+
},
|
|
23
|
+
"ontology": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "Filter by specific ontology (optional)"
|
|
26
|
+
},
|
|
27
|
+
"exact_match": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"description": "Search for exact matches only (default: false)",
|
|
30
|
+
"default": false
|
|
31
|
+
},
|
|
32
|
+
"include_obsolete": {
|
|
33
|
+
"type": "boolean",
|
|
34
|
+
"description": "Include obsolete terms (default: false)",
|
|
35
|
+
"default": false
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"required": ["operation", "query"]
|
|
39
|
+
},
|
|
40
|
+
"examples": [
|
|
41
|
+
{
|
|
42
|
+
"description": "Search for disease terms",
|
|
43
|
+
"arguments": {
|
|
44
|
+
"operation": "search_terms",
|
|
45
|
+
"query": "diabetes",
|
|
46
|
+
"rows": 10
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"description": "Search for exact term in specific ontology",
|
|
51
|
+
"arguments": {
|
|
52
|
+
"operation": "search_terms",
|
|
53
|
+
"query": "cancer",
|
|
54
|
+
"ontology": "efo",
|
|
55
|
+
"exact_match": true
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"tags": ["ontology", "search", "ebi", "ols"],
|
|
60
|
+
"author": "EBI OLS",
|
|
61
|
+
"version": "1.0.0"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "OLSTool",
|
|
65
|
+
"name": "ols_get_ontology_info",
|
|
66
|
+
"description": "Get detailed information about an ontology",
|
|
67
|
+
"parameter": {
|
|
68
|
+
"type": "object",
|
|
69
|
+
"properties": {
|
|
70
|
+
"operation": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"const": "get_ontology_info",
|
|
73
|
+
"description": "The operation to perform (get_ontology_info)"
|
|
74
|
+
},
|
|
75
|
+
"ontology_id": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "The ID of the ontology to retrieve"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"required": ["operation", "ontology_id"]
|
|
81
|
+
},
|
|
82
|
+
"examples": [
|
|
83
|
+
{
|
|
84
|
+
"description": "Get information about the EFO ontology",
|
|
85
|
+
"arguments": {
|
|
86
|
+
"operation": "get_ontology_info",
|
|
87
|
+
"ontology_id": "efo"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"tags": ["ontology", "metadata", "ebi", "ols"],
|
|
92
|
+
"author": "EBI OLS",
|
|
93
|
+
"version": "1.0.0"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "OLSTool",
|
|
97
|
+
"name": "ols_search_ontologies",
|
|
98
|
+
"description": "Search for ontologies in OLS",
|
|
99
|
+
"parameter": {
|
|
100
|
+
"type": "object",
|
|
101
|
+
"properties": {
|
|
102
|
+
"operation": {
|
|
103
|
+
"type": "string",
|
|
104
|
+
"const": "search_ontologies",
|
|
105
|
+
"description": "The operation to perform (search_ontologies)"
|
|
106
|
+
},
|
|
107
|
+
"search": {
|
|
108
|
+
"type": "string",
|
|
109
|
+
"description": "Search query for ontologies (optional)"
|
|
110
|
+
},
|
|
111
|
+
"page": {
|
|
112
|
+
"type": "integer",
|
|
113
|
+
"description": "Page number (default: 0)",
|
|
114
|
+
"default": 0
|
|
115
|
+
},
|
|
116
|
+
"size": {
|
|
117
|
+
"type": "integer",
|
|
118
|
+
"description": "Number of results per page (default: 20)",
|
|
119
|
+
"default": 20
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"required": ["operation"]
|
|
123
|
+
},
|
|
124
|
+
"examples": [
|
|
125
|
+
{
|
|
126
|
+
"description": "Search all ontologies",
|
|
127
|
+
"arguments": {
|
|
128
|
+
"operation": "search_ontologies"
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"description": "Search for disease-related ontologies",
|
|
133
|
+
"arguments": {
|
|
134
|
+
"operation": "search_ontologies",
|
|
135
|
+
"search": "disease",
|
|
136
|
+
"size": 10
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"tags": ["ontology", "search", "ebi", "ols"],
|
|
141
|
+
"author": "EBI OLS",
|
|
142
|
+
"version": "1.0.0"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"type": "OLSTool",
|
|
146
|
+
"name": "ols_get_term_info",
|
|
147
|
+
"description": "Get detailed information about a specific term in OLS",
|
|
148
|
+
"parameter": {
|
|
149
|
+
"type": "object",
|
|
150
|
+
"properties": {
|
|
151
|
+
"operation": {
|
|
152
|
+
"type": "string",
|
|
153
|
+
"const": "get_term_info",
|
|
154
|
+
"description": "The operation to perform (get_term_info)"
|
|
155
|
+
},
|
|
156
|
+
"id": {
|
|
157
|
+
"type": "string",
|
|
158
|
+
"description": "The ID or IRI of the term to retrieve"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"required": ["operation", "id"]
|
|
162
|
+
},
|
|
163
|
+
"examples": [
|
|
164
|
+
{
|
|
165
|
+
"description": "Get term information by ID",
|
|
166
|
+
"arguments": {
|
|
167
|
+
"operation": "get_term_info",
|
|
168
|
+
"id": "EFO:0000408"
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"tags": ["ontology", "term", "metadata", "ebi", "ols"],
|
|
173
|
+
"author": "EBI OLS",
|
|
174
|
+
"version": "1.0.0"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"type": "OLSTool",
|
|
178
|
+
"name": "ols_get_term_children",
|
|
179
|
+
"description": "Get child terms of a specific term in an ontology",
|
|
180
|
+
"parameter": {
|
|
181
|
+
"type": "object",
|
|
182
|
+
"properties": {
|
|
183
|
+
"operation": {
|
|
184
|
+
"type": "string",
|
|
185
|
+
"const": "get_term_children",
|
|
186
|
+
"description": "The operation to perform (get_term_children)"
|
|
187
|
+
},
|
|
188
|
+
"term_iri": {
|
|
189
|
+
"type": "string",
|
|
190
|
+
"description": "The IRI of the term to retrieve children for"
|
|
191
|
+
},
|
|
192
|
+
"ontology": {
|
|
193
|
+
"type": "string",
|
|
194
|
+
"description": "The ontology ID"
|
|
195
|
+
},
|
|
196
|
+
"include_obsolete": {
|
|
197
|
+
"type": "boolean",
|
|
198
|
+
"description": "Include obsolete terms (default: false)",
|
|
199
|
+
"default": false
|
|
200
|
+
},
|
|
201
|
+
"size": {
|
|
202
|
+
"type": "integer",
|
|
203
|
+
"description": "Number of results to return (default: 20)",
|
|
204
|
+
"default": 20
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"required": ["operation", "term_iri", "ontology"]
|
|
208
|
+
},
|
|
209
|
+
"examples": [
|
|
210
|
+
{
|
|
211
|
+
"description": "Get child terms",
|
|
212
|
+
"arguments": {
|
|
213
|
+
"operation": "get_term_children",
|
|
214
|
+
"term_iri": "http://www.ebi.ac.uk/efo/EFO_0000408",
|
|
215
|
+
"ontology": "efo",
|
|
216
|
+
"size": 10
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
"tags": ["ontology", "hierarchy", "term", "ebi", "ols"],
|
|
221
|
+
"author": "EBI OLS",
|
|
222
|
+
"version": "1.0.0"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"type": "OLSTool",
|
|
226
|
+
"name": "ols_get_term_ancestors",
|
|
227
|
+
"description": "Get ancestor terms of a specific term in an ontology",
|
|
228
|
+
"parameter": {
|
|
229
|
+
"type": "object",
|
|
230
|
+
"properties": {
|
|
231
|
+
"operation": {
|
|
232
|
+
"type": "string",
|
|
233
|
+
"const": "get_term_ancestors",
|
|
234
|
+
"description": "The operation to perform (get_term_ancestors)"
|
|
235
|
+
},
|
|
236
|
+
"term_iri": {
|
|
237
|
+
"type": "string",
|
|
238
|
+
"description": "The IRI of the term to retrieve ancestors for"
|
|
239
|
+
},
|
|
240
|
+
"ontology": {
|
|
241
|
+
"type": "string",
|
|
242
|
+
"description": "The ontology ID"
|
|
243
|
+
},
|
|
244
|
+
"include_obsolete": {
|
|
245
|
+
"type": "boolean",
|
|
246
|
+
"description": "Include obsolete terms (default: false)",
|
|
247
|
+
"default": false
|
|
248
|
+
},
|
|
249
|
+
"size": {
|
|
250
|
+
"type": "integer",
|
|
251
|
+
"description": "Number of results to return (default: 20)",
|
|
252
|
+
"default": 20
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"required": ["operation", "term_iri", "ontology"]
|
|
256
|
+
},
|
|
257
|
+
"examples": [
|
|
258
|
+
{
|
|
259
|
+
"description": "Get ancestor terms",
|
|
260
|
+
"arguments": {
|
|
261
|
+
"operation": "get_term_ancestors",
|
|
262
|
+
"term_iri": "http://www.ebi.ac.uk/efo/EFO_0000408",
|
|
263
|
+
"ontology": "efo"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
],
|
|
267
|
+
"tags": ["ontology", "hierarchy", "term", "ebi", "ols"],
|
|
268
|
+
"author": "EBI OLS",
|
|
269
|
+
"version": "1.0.0"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"type": "OLSTool",
|
|
273
|
+
"name": "ols_find_similar_terms",
|
|
274
|
+
"description": "Find similar terms using LLM-based similarity",
|
|
275
|
+
"parameter": {
|
|
276
|
+
"type": "object",
|
|
277
|
+
"properties": {
|
|
278
|
+
"operation": {
|
|
279
|
+
"type": "string",
|
|
280
|
+
"const": "find_similar_terms",
|
|
281
|
+
"description": "The operation to perform (find_similar_terms)"
|
|
282
|
+
},
|
|
283
|
+
"term_iri": {
|
|
284
|
+
"type": "string",
|
|
285
|
+
"description": "The IRI of the term to find similar terms for"
|
|
286
|
+
},
|
|
287
|
+
"ontology": {
|
|
288
|
+
"type": "string",
|
|
289
|
+
"description": "The ontology ID"
|
|
290
|
+
},
|
|
291
|
+
"size": {
|
|
292
|
+
"type": "integer",
|
|
293
|
+
"description": "Number of similar terms to return (default: 10)",
|
|
294
|
+
"default": 10
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"required": ["operation", "term_iri", "ontology"]
|
|
298
|
+
},
|
|
299
|
+
"examples": [
|
|
300
|
+
{
|
|
301
|
+
"description": "Find similar terms using LLM",
|
|
302
|
+
"arguments": {
|
|
303
|
+
"operation": "find_similar_terms",
|
|
304
|
+
"term_iri": "http://www.ebi.ac.uk/efo/EFO_0000408",
|
|
305
|
+
"ontology": "efo",
|
|
306
|
+
"size": 5
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"tags": ["ontology", "similarity", "llm", "ebi", "ols"],
|
|
311
|
+
"author": "EBI OLS",
|
|
312
|
+
"version": "1.0.0"
|
|
313
|
+
}
|
|
314
|
+
]
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "DynamicPackageDiscovery",
|
|
4
|
+
"name": "dynamic_package_discovery",
|
|
5
|
+
"description": "Dynamically searches PyPI and evaluates packages based on requirements",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"requirements": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Description of what the package should do"
|
|
12
|
+
},
|
|
13
|
+
"functionality": {
|
|
14
|
+
"type": "string",
|
|
15
|
+
"description": "Specific functionality needed"
|
|
16
|
+
},
|
|
17
|
+
"constraints": {
|
|
18
|
+
"type": "object",
|
|
19
|
+
"description": "Constraints (python version, license, etc.)"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"required": ["requirements"]
|
|
23
|
+
},
|
|
24
|
+
"return_schema": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"status": {"type": "string"},
|
|
28
|
+
"candidates": {
|
|
29
|
+
"type": "array",
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "object",
|
|
32
|
+
"properties": {
|
|
33
|
+
"name": {"type": "string"},
|
|
34
|
+
"version": {"type": "string"},
|
|
35
|
+
"quality_score": {"type": "number"},
|
|
36
|
+
"reasoning": {"type": "string"},
|
|
37
|
+
"description": {"type": "string"},
|
|
38
|
+
"has_docs": {"type": "boolean"},
|
|
39
|
+
"is_stable": {"type": "boolean"}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"recommendation": {"type": "object"},
|
|
44
|
+
"total_evaluated": {"type": "integer"}
|
|
45
|
+
},
|
|
46
|
+
"required": ["status", "candidates"]
|
|
47
|
+
},
|
|
48
|
+
"test_examples": [
|
|
49
|
+
{
|
|
50
|
+
"input": {
|
|
51
|
+
"requirements": "data analysis and visualization",
|
|
52
|
+
"functionality": "create charts and graphs"
|
|
53
|
+
},
|
|
54
|
+
"expected_output_type": "object",
|
|
55
|
+
"description": "Search for data visualization packages"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"metadata": {
|
|
59
|
+
"tags": ["package-discovery", "pypi", "dynamic"],
|
|
60
|
+
"difficulty_level": "intermediate",
|
|
61
|
+
"estimated_execution_time": "5-15 seconds"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
]
|
|
@@ -141,53 +141,6 @@
|
|
|
141
141
|
]
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
|
-
{
|
|
145
|
-
"type": "PackageTool",
|
|
146
|
-
"name": "get_hyperopt_info",
|
|
147
|
-
"description": "Get comprehensive information about Hyperopt – distributed hyperparameter optimization",
|
|
148
|
-
"parameter": {
|
|
149
|
-
"type": "object",
|
|
150
|
-
"properties": {
|
|
151
|
-
"include_examples": {
|
|
152
|
-
"type": "boolean",
|
|
153
|
-
"description": "Whether to include usage examples and quick start guide",
|
|
154
|
-
"default": true
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
"required": [
|
|
158
|
-
"include_examples"
|
|
159
|
-
]
|
|
160
|
-
},
|
|
161
|
-
"package_name": "hyperopt",
|
|
162
|
-
"local_info": {
|
|
163
|
-
"name": "Hyperopt",
|
|
164
|
-
"description": "Python library for hyperparameter optimization using algorithms like random search, Tree of Parzen Estimators (TPE), and adaptive TPE. Supports distributed optimization across multiple cores/machines.",
|
|
165
|
-
"category": "Machine Learning Optimization",
|
|
166
|
-
"import_name": "hyperopt",
|
|
167
|
-
"popularity": 85,
|
|
168
|
-
"keywords": [
|
|
169
|
-
"hyperparameter optimization",
|
|
170
|
-
"Bayesian optimization",
|
|
171
|
-
"TPE",
|
|
172
|
-
"distributed computing",
|
|
173
|
-
"model tuning"
|
|
174
|
-
],
|
|
175
|
-
"documentation": "http://hyperopt.github.io/hyperopt/",
|
|
176
|
-
"repository": "https://github.com/hyperopt/hyperopt",
|
|
177
|
-
"installation": {
|
|
178
|
-
"pip": "pip install hyperopt",
|
|
179
|
-
"conda": "conda install -c conda-forge hyperopt"
|
|
180
|
-
},
|
|
181
|
-
"usage_example": "from hyperopt import fmin, tpe, hp, STATUS_OK, Trials\nfrom sklearn.ensemble import RandomForestClassifier\nfrom sklearn.model_selection import cross_val_score\n\n# Define search space\nspace = {\n 'n_estimators': hp.choice('n_estimators', [10, 50, 100, 200]),\n 'max_depth': hp.choice('max_depth', [3, 5, 10, None])\n}\n\n# Objective function\ndef objective(params):\n clf = RandomForestClassifier(**params)\n score = cross_val_score(clf, X, y, cv=3).mean()\n return {'loss': -score, 'status': STATUS_OK}\n\n# Optimize\ntrials = Trials()\nbest = fmin(objective, space, algo=tpe.suggest, max_evals=100, trials=trials)",
|
|
182
|
-
"quick_start": [
|
|
183
|
-
"Install: pip install hyperopt",
|
|
184
|
-
"Import: from hyperopt import fmin, tpe, hp",
|
|
185
|
-
"Define space: space = {'param': hp.choice('param', [1, 2, 3])}",
|
|
186
|
-
"Define objective: def objective(params): return loss",
|
|
187
|
-
"Optimize: best = fmin(objective, space, algo=tpe.suggest)"
|
|
188
|
-
]
|
|
189
|
-
}
|
|
190
|
-
},
|
|
191
144
|
{
|
|
192
145
|
"type": "PackageTool",
|
|
193
146
|
"name": "get_umap_learn_info",
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "PaleobiologyRESTTool",
|
|
4
|
+
"name": "Paleobiology_get_fossils",
|
|
5
|
+
"description": "Get fossil records from Paleobiology Database",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"taxon": {"type": "string", "description": "Taxon name"},
|
|
10
|
+
"limit": {"type": "integer", "default": 20, "description": "Number of results"}
|
|
11
|
+
},
|
|
12
|
+
"required": ["taxon"]
|
|
13
|
+
},
|
|
14
|
+
"fields": {
|
|
15
|
+
"endpoint": "https://paleobiodb.org/data1.2/occs/list.json?taxon_name={taxon}&limit={limit}",
|
|
16
|
+
"return_format": "JSON"
|
|
17
|
+
},
|
|
18
|
+
"return_schema": {
|
|
19
|
+
"type": "object",
|
|
20
|
+
"properties": {
|
|
21
|
+
"records": {
|
|
22
|
+
"type": "array",
|
|
23
|
+
"items": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"properties": {
|
|
26
|
+
"occurrence_no": {"type": "string"},
|
|
27
|
+
"record_type": {"type": "string"},
|
|
28
|
+
"reid_no": {"type": "string"},
|
|
29
|
+
"flags": {"type": "string"},
|
|
30
|
+
"collection_no": {"type": "string"},
|
|
31
|
+
"identified_name": {"type": "string"},
|
|
32
|
+
"identified_rank": {"type": "string"},
|
|
33
|
+
"identified_no": {"type": "string"},
|
|
34
|
+
"accepted_name": {"type": "string"},
|
|
35
|
+
"accepted_rank": {"type": "string"},
|
|
36
|
+
"accepted_no": {"type": "string"},
|
|
37
|
+
"early_interval": {"type": "string"},
|
|
38
|
+
"late_interval": {"type": "string"},
|
|
39
|
+
"early_age": {"type": "number"},
|
|
40
|
+
"late_age": {"type": "number"},
|
|
41
|
+
"reference_no": {"type": "string"},
|
|
42
|
+
"is_representative": {"type": "string"},
|
|
43
|
+
"formation": {"type": "string"},
|
|
44
|
+
"member": {"type": "string"},
|
|
45
|
+
"lithology": {"type": "string"},
|
|
46
|
+
"lithology1": {"type": "string"},
|
|
47
|
+
"lithology2": {"type": "string"},
|
|
48
|
+
"environment": {"type": "string"},
|
|
49
|
+
"taphonomy": {"type": "string"},
|
|
50
|
+
"preservation": {"type": "string"},
|
|
51
|
+
"lithadj1": {"type": "string"},
|
|
52
|
+
"lithadj2": {"type": "string"},
|
|
53
|
+
"geogscale": {"type": "string"},
|
|
54
|
+
"geogname": {"type": "string"},
|
|
55
|
+
"state": {"type": "string"},
|
|
56
|
+
"county": {"type": "string"},
|
|
57
|
+
"lat": {"type": "number"},
|
|
58
|
+
"lng": {"type": "number"},
|
|
59
|
+
"geogcomments": {"type": "string"},
|
|
60
|
+
"collection_name": {"type": "string"},
|
|
61
|
+
"collection_aka": {"type": "string"},
|
|
62
|
+
"collection_type": {"type": "string"},
|
|
63
|
+
"collection_comments": {"type": "string"},
|
|
64
|
+
"stratscale": {"type": "string"},
|
|
65
|
+
"stratcomments": {"type": "string"},
|
|
66
|
+
"lithadjcomments": {"type": "string"},
|
|
67
|
+
"geogcomments": {"type": "string"},
|
|
68
|
+
"taxonomy": {
|
|
69
|
+
"type": "object",
|
|
70
|
+
"properties": {
|
|
71
|
+
"phylum": {"type": "string"},
|
|
72
|
+
"class": {"type": "string"},
|
|
73
|
+
"order": {"type": "string"},
|
|
74
|
+
"family": {"type": "string"},
|
|
75
|
+
"genus": {"type": "string"},
|
|
76
|
+
"species": {"type": "string"}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"count": {"type": "integer"},
|
|
83
|
+
"status": {"type": "string"}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"test_examples": [
|
|
87
|
+
{"taxon": "Tyrannosaurus", "limit": 5},
|
|
88
|
+
{"taxon": "Trilobita", "limit": 10}
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
]
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "PRIDERESTTool",
|
|
4
|
+
"name": "PRIDE_search_proteomics",
|
|
5
|
+
"description": "Search PRIDE proteomics database for experiments",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {"type": "string", "description": "Search query"},
|
|
10
|
+
"page_size": {"type": "integer", "default": 20, "description": "Results per page"}
|
|
11
|
+
},
|
|
12
|
+
"required": ["query"]
|
|
13
|
+
},
|
|
14
|
+
"fields": {
|
|
15
|
+
"endpoint": "https://www.ebi.ac.uk/pride/ws/archive/v2/projects?query={query}&pageSize={page_size}",
|
|
16
|
+
"return_format": "JSON"
|
|
17
|
+
},
|
|
18
|
+
"return_schema": {
|
|
19
|
+
"type": "object",
|
|
20
|
+
"properties": {
|
|
21
|
+
"content": {
|
|
22
|
+
"type": "array",
|
|
23
|
+
"items": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"properties": {
|
|
26
|
+
"accession": {"type": "string"},
|
|
27
|
+
"title": {"type": "string"},
|
|
28
|
+
"description": {"type": "string"},
|
|
29
|
+
"species": {"type": "array"},
|
|
30
|
+
"tissues": {"type": "array"},
|
|
31
|
+
"diseases": {"type": "array"},
|
|
32
|
+
"instruments": {"type": "array"},
|
|
33
|
+
"submissionDate": {"type": "string"},
|
|
34
|
+
"publicationDate": {"type": "string"},
|
|
35
|
+
"numAssays": {"type": "integer"},
|
|
36
|
+
"numSamples": {"type": "integer"},
|
|
37
|
+
"numFiles": {"type": "integer"},
|
|
38
|
+
"fileSize": {"type": "integer"},
|
|
39
|
+
"labHead": {"type": "object"},
|
|
40
|
+
"submitters": {"type": "array"},
|
|
41
|
+
"keywords": {"type": "array"},
|
|
42
|
+
"projectTags": {"type": "array"}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"pageInfo": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"page": {"type": "integer"},
|
|
50
|
+
"size": {"type": "integer"},
|
|
51
|
+
"totalElements": {"type": "integer"},
|
|
52
|
+
"totalPages": {"type": "integer"}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"test_examples": [
|
|
58
|
+
{"query": "cancer", "page_size": 5},
|
|
59
|
+
{"query": "COVID-19", "page_size": 10}
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
]
|