tooluniverse 0.2.0__py3-none-any.whl → 1.0.1__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 +340 -4
- tooluniverse/admetai_tool.py +84 -0
- tooluniverse/agentic_tool.py +563 -0
- tooluniverse/alphafold_tool.py +96 -0
- tooluniverse/base_tool.py +129 -6
- tooluniverse/boltz_tool.py +207 -0
- tooluniverse/chem_tool.py +192 -0
- tooluniverse/compose_scripts/__init__.py +1 -0
- tooluniverse/compose_scripts/biomarker_discovery.py +293 -0
- tooluniverse/compose_scripts/comprehensive_drug_discovery.py +186 -0
- tooluniverse/compose_scripts/drug_safety_analyzer.py +89 -0
- tooluniverse/compose_scripts/literature_tool.py +34 -0
- tooluniverse/compose_scripts/output_summarizer.py +279 -0
- tooluniverse/compose_scripts/tool_description_optimizer.py +681 -0
- tooluniverse/compose_scripts/tool_discover.py +705 -0
- tooluniverse/compose_scripts/tool_graph_composer.py +448 -0
- tooluniverse/compose_tool.py +371 -0
- tooluniverse/ctg_tool.py +1002 -0
- tooluniverse/custom_tool.py +81 -0
- tooluniverse/dailymed_tool.py +108 -0
- tooluniverse/data/admetai_tools.json +155 -0
- tooluniverse/data/adverse_event_tools.json +108 -0
- tooluniverse/data/agentic_tools.json +1156 -0
- tooluniverse/data/alphafold_tools.json +87 -0
- tooluniverse/data/boltz_tools.json +9 -0
- tooluniverse/data/chembl_tools.json +16 -0
- tooluniverse/data/clinicaltrials_gov_tools.json +326 -0
- tooluniverse/data/compose_tools.json +202 -0
- tooluniverse/data/dailymed_tools.json +70 -0
- tooluniverse/data/dataset_tools.json +646 -0
- tooluniverse/data/disease_target_score_tools.json +712 -0
- tooluniverse/data/efo_tools.json +17 -0
- tooluniverse/data/embedding_tools.json +319 -0
- tooluniverse/data/enrichr_tools.json +31 -0
- tooluniverse/data/europe_pmc_tools.json +22 -0
- tooluniverse/data/expert_feedback_tools.json +10 -0
- tooluniverse/data/fda_drug_adverse_event_tools.json +491 -0
- tooluniverse/data/fda_drug_labeling_tools.json +1 -1
- tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py +76929 -148860
- tooluniverse/data/finder_tools.json +209 -0
- tooluniverse/data/gene_ontology_tools.json +113 -0
- tooluniverse/data/gwas_tools.json +1082 -0
- tooluniverse/data/hpa_tools.json +333 -0
- tooluniverse/data/humanbase_tools.json +47 -0
- tooluniverse/data/idmap_tools.json +74 -0
- tooluniverse/data/mcp_client_tools_example.json +113 -0
- tooluniverse/data/mcpautoloadertool_defaults.json +28 -0
- tooluniverse/data/medlineplus_tools.json +141 -0
- tooluniverse/data/monarch_tools.json +1 -1
- tooluniverse/data/openalex_tools.json +36 -0
- tooluniverse/data/opentarget_tools.json +1 -1
- tooluniverse/data/output_summarization_tools.json +101 -0
- tooluniverse/data/packages/bioinformatics_core_tools.json +1756 -0
- tooluniverse/data/packages/categorized_tools.txt +206 -0
- tooluniverse/data/packages/cheminformatics_tools.json +347 -0
- tooluniverse/data/packages/earth_sciences_tools.json +74 -0
- tooluniverse/data/packages/genomics_tools.json +776 -0
- tooluniverse/data/packages/image_processing_tools.json +38 -0
- tooluniverse/data/packages/machine_learning_tools.json +789 -0
- tooluniverse/data/packages/neuroscience_tools.json +62 -0
- tooluniverse/data/packages/original_tools.txt +0 -0
- tooluniverse/data/packages/physics_astronomy_tools.json +62 -0
- tooluniverse/data/packages/scientific_computing_tools.json +560 -0
- tooluniverse/data/packages/single_cell_tools.json +453 -0
- tooluniverse/data/packages/structural_biology_tools.json +396 -0
- tooluniverse/data/packages/visualization_tools.json +399 -0
- tooluniverse/data/pubchem_tools.json +215 -0
- tooluniverse/data/pubtator_tools.json +68 -0
- tooluniverse/data/rcsb_pdb_tools.json +1332 -0
- tooluniverse/data/reactome_tools.json +19 -0
- tooluniverse/data/semantic_scholar_tools.json +26 -0
- tooluniverse/data/special_tools.json +2 -25
- tooluniverse/data/tool_composition_tools.json +88 -0
- tooluniverse/data/toolfinderkeyword_defaults.json +34 -0
- tooluniverse/data/txagent_client_tools.json +9 -0
- tooluniverse/data/uniprot_tools.json +211 -0
- tooluniverse/data/url_fetch_tools.json +94 -0
- tooluniverse/data/uspto_downloader_tools.json +9 -0
- tooluniverse/data/uspto_tools.json +811 -0
- tooluniverse/data/xml_tools.json +3275 -0
- tooluniverse/dataset_tool.py +296 -0
- tooluniverse/default_config.py +165 -0
- tooluniverse/efo_tool.py +42 -0
- tooluniverse/embedding_database.py +630 -0
- tooluniverse/embedding_sync.py +396 -0
- tooluniverse/enrichr_tool.py +266 -0
- tooluniverse/europe_pmc_tool.py +52 -0
- tooluniverse/execute_function.py +1775 -95
- tooluniverse/extended_hooks.py +444 -0
- tooluniverse/gene_ontology_tool.py +194 -0
- tooluniverse/graphql_tool.py +158 -36
- tooluniverse/gwas_tool.py +358 -0
- tooluniverse/hpa_tool.py +1645 -0
- tooluniverse/humanbase_tool.py +389 -0
- tooluniverse/logging_config.py +254 -0
- tooluniverse/mcp_client_tool.py +764 -0
- tooluniverse/mcp_integration.py +413 -0
- tooluniverse/mcp_tool_registry.py +925 -0
- tooluniverse/medlineplus_tool.py +337 -0
- tooluniverse/openalex_tool.py +228 -0
- tooluniverse/openfda_adv_tool.py +283 -0
- tooluniverse/openfda_tool.py +393 -160
- tooluniverse/output_hook.py +1122 -0
- tooluniverse/package_tool.py +195 -0
- tooluniverse/pubchem_tool.py +158 -0
- tooluniverse/pubtator_tool.py +168 -0
- tooluniverse/rcsb_pdb_tool.py +38 -0
- tooluniverse/reactome_tool.py +108 -0
- tooluniverse/remote/boltz/boltz_mcp_server.py +50 -0
- tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +442 -0
- tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +2013 -0
- tooluniverse/remote/expert_feedback/simple_test.py +23 -0
- tooluniverse/remote/expert_feedback/start_web_interface.py +188 -0
- tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
- tooluniverse/remote/immune_compass/compass_tool.py +327 -0
- tooluniverse/remote/pinnacle/pinnacle_tool.py +328 -0
- tooluniverse/remote/transcriptformer/transcriptformer_tool.py +586 -0
- tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +61 -0
- tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +120 -0
- tooluniverse/remote_tool.py +99 -0
- tooluniverse/restful_tool.py +53 -30
- tooluniverse/scripts/generate_tool_graph.py +408 -0
- tooluniverse/scripts/visualize_tool_graph.py +829 -0
- tooluniverse/semantic_scholar_tool.py +62 -0
- tooluniverse/smcp.py +2452 -0
- tooluniverse/smcp_server.py +975 -0
- tooluniverse/test/mcp_server_test.py +0 -0
- tooluniverse/test/test_admetai_tool.py +370 -0
- tooluniverse/test/test_agentic_tool.py +129 -0
- tooluniverse/test/test_alphafold_tool.py +71 -0
- tooluniverse/test/test_chem_tool.py +37 -0
- tooluniverse/test/test_compose_lieraturereview.py +63 -0
- tooluniverse/test/test_compose_tool.py +448 -0
- tooluniverse/test/test_dailymed.py +69 -0
- tooluniverse/test/test_dataset_tool.py +200 -0
- tooluniverse/test/test_disease_target_score.py +56 -0
- tooluniverse/test/test_drugbank_filter_examples.py +179 -0
- tooluniverse/test/test_efo.py +31 -0
- tooluniverse/test/test_enrichr_tool.py +21 -0
- tooluniverse/test/test_europe_pmc_tool.py +20 -0
- tooluniverse/test/test_fda_adv.py +95 -0
- tooluniverse/test/test_fda_drug_labeling.py +91 -0
- tooluniverse/test/test_gene_ontology_tools.py +66 -0
- tooluniverse/test/test_gwas_tool.py +139 -0
- tooluniverse/test/test_hpa.py +625 -0
- tooluniverse/test/test_humanbase_tool.py +20 -0
- tooluniverse/test/test_idmap_tools.py +61 -0
- tooluniverse/test/test_mcp_server.py +211 -0
- tooluniverse/test/test_mcp_tool.py +247 -0
- tooluniverse/test/test_medlineplus.py +220 -0
- tooluniverse/test/test_openalex_tool.py +32 -0
- tooluniverse/test/test_opentargets.py +28 -0
- tooluniverse/test/test_pubchem_tool.py +116 -0
- tooluniverse/test/test_pubtator_tool.py +37 -0
- tooluniverse/test/test_rcsb_pdb_tool.py +86 -0
- tooluniverse/test/test_reactome.py +54 -0
- tooluniverse/test/test_semantic_scholar_tool.py +24 -0
- tooluniverse/test/test_software_tools.py +147 -0
- tooluniverse/test/test_tool_description_optimizer.py +49 -0
- tooluniverse/test/test_tool_finder.py +26 -0
- tooluniverse/test/test_tool_finder_llm.py +252 -0
- tooluniverse/test/test_tools_find.py +195 -0
- tooluniverse/test/test_uniprot_tools.py +74 -0
- tooluniverse/test/test_uspto_tool.py +72 -0
- tooluniverse/test/test_xml_tool.py +113 -0
- tooluniverse/tool_finder_embedding.py +267 -0
- tooluniverse/tool_finder_keyword.py +693 -0
- tooluniverse/tool_finder_llm.py +699 -0
- tooluniverse/tool_graph_web_ui.py +955 -0
- tooluniverse/tool_registry.py +416 -0
- tooluniverse/uniprot_tool.py +155 -0
- tooluniverse/url_tool.py +253 -0
- tooluniverse/uspto_tool.py +240 -0
- tooluniverse/utils.py +369 -41
- tooluniverse/xml_tool.py +369 -0
- tooluniverse-1.0.1.dist-info/METADATA +387 -0
- tooluniverse-1.0.1.dist-info/RECORD +182 -0
- tooluniverse-1.0.1.dist-info/entry_points.txt +9 -0
- tooluniverse/generate_mcp_tools.py +0 -113
- tooluniverse/mcp_server.py +0 -3340
- tooluniverse-0.2.0.dist-info/METADATA +0 -139
- tooluniverse-0.2.0.dist-info/RECORD +0 -21
- tooluniverse-0.2.0.dist-info/entry_points.txt +0 -4
- {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/WHEEL +0 -0
- {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,712 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "disease_target_score",
|
|
4
|
+
"description": "Extract disease-target association scores from a specific data source using GraphQL API. This tool retrieves all targets associated with a disease and their scores from a specified datasource (e.g., chembl, eva, cancer_gene_census, etc.).",
|
|
5
|
+
"parameter": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"efoId": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
11
|
+
},
|
|
12
|
+
"datasourceId": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "The datasource ID to extract scores from. Available options: 'chembl', 'eva', 'eva_somatic', 'cancer_gene_census', 'cancer_biomarkers', 'europepmc', 'expression_atlas', 'genomics_england', 'impc', 'reactome', 'uniprot_literature', 'uniprot_variants'"
|
|
15
|
+
},
|
|
16
|
+
"pageSize": {
|
|
17
|
+
"type": "integer",
|
|
18
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
19
|
+
"default": 100
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"required": [
|
|
23
|
+
"efoId",
|
|
24
|
+
"datasourceId"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
28
|
+
"return_schema": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"description": "Disease-target association scores with metadata",
|
|
31
|
+
"properties": {
|
|
32
|
+
"disease_info": {
|
|
33
|
+
"type": "object",
|
|
34
|
+
"description": "Information about the queried disease",
|
|
35
|
+
"properties": {
|
|
36
|
+
"disease_id": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"description": "EFO disease ID (e.g., 'EFO_0000339')"
|
|
39
|
+
},
|
|
40
|
+
"disease_name": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"description": "Human-readable disease name (e.g., 'chronic myelogenous leukemia')"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"datasource": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "The data source that was queried (e.g., 'chembl', 'eva')"
|
|
49
|
+
},
|
|
50
|
+
"total_targets_with_scores": {
|
|
51
|
+
"type": "integer",
|
|
52
|
+
"description": "Total number of targets that have scores from this data source"
|
|
53
|
+
},
|
|
54
|
+
"target_scores": {
|
|
55
|
+
"type": "array",
|
|
56
|
+
"description": "Array of target-score pairs",
|
|
57
|
+
"items": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"properties": {
|
|
60
|
+
"target_symbol": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"description": "Gene symbol (e.g., 'ABL1', 'BCR')"
|
|
63
|
+
},
|
|
64
|
+
"target_id": {
|
|
65
|
+
"type": "string",
|
|
66
|
+
"description": "Ensembl gene ID (e.g., 'ENSG00000097007')"
|
|
67
|
+
},
|
|
68
|
+
"datasource": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"description": "Data source for this score"
|
|
71
|
+
},
|
|
72
|
+
"score": {
|
|
73
|
+
"type": "number",
|
|
74
|
+
"description": "Association score between 0 and 1"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"type": "DiseaseTargetScoreTool"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "chembl_disease_target_score",
|
|
85
|
+
"description": "Extract disease-target association scores specifically from ChEMBL database. ChEMBL provides bioactivity data for drug-target interactions.",
|
|
86
|
+
"datasource_id": "chembl",
|
|
87
|
+
"parameter": {
|
|
88
|
+
"type": "object",
|
|
89
|
+
"properties": {
|
|
90
|
+
"efoId": {
|
|
91
|
+
"type": "string",
|
|
92
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
93
|
+
},
|
|
94
|
+
"pageSize": {
|
|
95
|
+
"type": "integer",
|
|
96
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
97
|
+
"default": 100
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"required": [
|
|
101
|
+
"efoId"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
105
|
+
"return_schema": {
|
|
106
|
+
"type": "object",
|
|
107
|
+
"description": "ChEMBL disease-target association scores with metadata",
|
|
108
|
+
"properties": {
|
|
109
|
+
"disease_info": {
|
|
110
|
+
"type": "object",
|
|
111
|
+
"description": "Information about the queried disease",
|
|
112
|
+
"properties": {
|
|
113
|
+
"disease_id": {
|
|
114
|
+
"type": "string",
|
|
115
|
+
"description": "EFO disease ID"
|
|
116
|
+
},
|
|
117
|
+
"disease_name": {
|
|
118
|
+
"type": "string",
|
|
119
|
+
"description": "Human-readable disease name"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"datasource": {
|
|
124
|
+
"type": "string",
|
|
125
|
+
"description": "Always 'chembl' for this tool"
|
|
126
|
+
},
|
|
127
|
+
"total_targets_with_scores": {
|
|
128
|
+
"type": "integer",
|
|
129
|
+
"description": "Total number of targets with ChEMBL bioactivity scores"
|
|
130
|
+
},
|
|
131
|
+
"target_scores": {
|
|
132
|
+
"type": "array",
|
|
133
|
+
"description": "Array of target-ChEMBL score pairs",
|
|
134
|
+
"items": {
|
|
135
|
+
"type": "object",
|
|
136
|
+
"properties": {
|
|
137
|
+
"target_symbol": {
|
|
138
|
+
"type": "string",
|
|
139
|
+
"description": "Gene symbol"
|
|
140
|
+
},
|
|
141
|
+
"target_id": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"description": "Ensembl gene ID"
|
|
144
|
+
},
|
|
145
|
+
"datasource": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "Always 'chembl'"
|
|
148
|
+
},
|
|
149
|
+
"score": {
|
|
150
|
+
"type": "number",
|
|
151
|
+
"description": "ChEMBL bioactivity score (0-1)"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"type": "DiseaseTargetScoreTool"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "eva_disease_target_score",
|
|
162
|
+
"description": "Extract disease-target association scores from EVA (European Variation Archive). EVA provides genetic variant data.",
|
|
163
|
+
"datasource_id": "eva",
|
|
164
|
+
"parameter": {
|
|
165
|
+
"type": "object",
|
|
166
|
+
"properties": {
|
|
167
|
+
"efoId": {
|
|
168
|
+
"type": "string",
|
|
169
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
170
|
+
},
|
|
171
|
+
"pageSize": {
|
|
172
|
+
"type": "integer",
|
|
173
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
174
|
+
"default": 100
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"required": [
|
|
178
|
+
"efoId"
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
182
|
+
"return_schema": {
|
|
183
|
+
"type": "object",
|
|
184
|
+
"description": "EVA genetic variant disease-target association scores",
|
|
185
|
+
"properties": {
|
|
186
|
+
"disease_info": {
|
|
187
|
+
"type": "object",
|
|
188
|
+
"properties": {
|
|
189
|
+
"disease_id": {
|
|
190
|
+
"type": "string"
|
|
191
|
+
},
|
|
192
|
+
"disease_name": {
|
|
193
|
+
"type": "string"
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"datasource": {
|
|
198
|
+
"type": "string",
|
|
199
|
+
"description": "Always 'eva'"
|
|
200
|
+
},
|
|
201
|
+
"total_targets_with_scores": {
|
|
202
|
+
"type": "integer"
|
|
203
|
+
},
|
|
204
|
+
"target_scores": {
|
|
205
|
+
"type": "array",
|
|
206
|
+
"items": {
|
|
207
|
+
"type": "object",
|
|
208
|
+
"properties": {
|
|
209
|
+
"target_symbol": {
|
|
210
|
+
"type": "string"
|
|
211
|
+
},
|
|
212
|
+
"target_id": {
|
|
213
|
+
"type": "string"
|
|
214
|
+
},
|
|
215
|
+
"datasource": {
|
|
216
|
+
"type": "string"
|
|
217
|
+
},
|
|
218
|
+
"score": {
|
|
219
|
+
"type": "number",
|
|
220
|
+
"description": "EVA genetic variant score (0-1)"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"type": "DiseaseTargetScoreTool"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "eva_somatic_disease_target_score",
|
|
231
|
+
"description": "Extract disease-target association scores from EVA somatic mutations. This includes somatic variant data.",
|
|
232
|
+
"datasource_id": "eva_somatic",
|
|
233
|
+
"parameter": {
|
|
234
|
+
"type": "object",
|
|
235
|
+
"properties": {
|
|
236
|
+
"efoId": {
|
|
237
|
+
"type": "string",
|
|
238
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
239
|
+
},
|
|
240
|
+
"pageSize": {
|
|
241
|
+
"type": "integer",
|
|
242
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
243
|
+
"default": 100
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"required": [
|
|
247
|
+
"efoId"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
250
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
251
|
+
"return_schema": {
|
|
252
|
+
"type": "object",
|
|
253
|
+
"description": "EVA somatic mutation disease-target association scores",
|
|
254
|
+
"properties": {
|
|
255
|
+
"disease_info": {
|
|
256
|
+
"type": "object",
|
|
257
|
+
"properties": {
|
|
258
|
+
"disease_id": {
|
|
259
|
+
"type": "string"
|
|
260
|
+
},
|
|
261
|
+
"disease_name": {
|
|
262
|
+
"type": "string"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"datasource": {
|
|
267
|
+
"type": "string",
|
|
268
|
+
"description": "Always 'eva_somatic'"
|
|
269
|
+
},
|
|
270
|
+
"total_targets_with_scores": {
|
|
271
|
+
"type": "integer"
|
|
272
|
+
},
|
|
273
|
+
"target_scores": {
|
|
274
|
+
"type": "array",
|
|
275
|
+
"items": {
|
|
276
|
+
"type": "object",
|
|
277
|
+
"properties": {
|
|
278
|
+
"target_symbol": {
|
|
279
|
+
"type": "string"
|
|
280
|
+
},
|
|
281
|
+
"target_id": {
|
|
282
|
+
"type": "string"
|
|
283
|
+
},
|
|
284
|
+
"datasource": {
|
|
285
|
+
"type": "string"
|
|
286
|
+
},
|
|
287
|
+
"score": {
|
|
288
|
+
"type": "number",
|
|
289
|
+
"description": "EVA somatic mutation score (0-1)"
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"type": "DiseaseTargetScoreTool"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "cancer_gene_census_disease_target_score",
|
|
300
|
+
"description": "Extract disease-target association scores from Cancer Gene Census. This provides curated cancer gene data.",
|
|
301
|
+
"datasource_id": "cancer_gene_census",
|
|
302
|
+
"parameter": {
|
|
303
|
+
"type": "object",
|
|
304
|
+
"properties": {
|
|
305
|
+
"efoId": {
|
|
306
|
+
"type": "string",
|
|
307
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
308
|
+
},
|
|
309
|
+
"pageSize": {
|
|
310
|
+
"type": "integer",
|
|
311
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
312
|
+
"default": 100
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"required": [
|
|
316
|
+
"efoId"
|
|
317
|
+
]
|
|
318
|
+
},
|
|
319
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
320
|
+
"return_schema": {
|
|
321
|
+
"type": "object",
|
|
322
|
+
"description": "Cancer Gene Census disease-target association scores",
|
|
323
|
+
"properties": {
|
|
324
|
+
"disease_info": {
|
|
325
|
+
"type": "object",
|
|
326
|
+
"properties": {
|
|
327
|
+
"disease_id": {
|
|
328
|
+
"type": "string"
|
|
329
|
+
},
|
|
330
|
+
"disease_name": {
|
|
331
|
+
"type": "string"
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"datasource": {
|
|
336
|
+
"type": "string",
|
|
337
|
+
"description": "Always 'cancer_gene_census'"
|
|
338
|
+
},
|
|
339
|
+
"total_targets_with_scores": {
|
|
340
|
+
"type": "integer"
|
|
341
|
+
},
|
|
342
|
+
"target_scores": {
|
|
343
|
+
"type": "array",
|
|
344
|
+
"items": {
|
|
345
|
+
"type": "object",
|
|
346
|
+
"properties": {
|
|
347
|
+
"target_symbol": {
|
|
348
|
+
"type": "string"
|
|
349
|
+
},
|
|
350
|
+
"target_id": {
|
|
351
|
+
"type": "string"
|
|
352
|
+
},
|
|
353
|
+
"datasource": {
|
|
354
|
+
"type": "string"
|
|
355
|
+
},
|
|
356
|
+
"score": {
|
|
357
|
+
"type": "number",
|
|
358
|
+
"description": "Cancer Gene Census score (0-1)"
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"type": "DiseaseTargetScoreTool"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "cancer_biomarkers_disease_target_score",
|
|
369
|
+
"description": "Extract disease-target association scores from cancer biomarkers data. This includes known cancer biomarkers.",
|
|
370
|
+
"datasource_id": "cancer_biomarkers",
|
|
371
|
+
"parameter": {
|
|
372
|
+
"type": "object",
|
|
373
|
+
"properties": {
|
|
374
|
+
"efoId": {
|
|
375
|
+
"type": "string",
|
|
376
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
377
|
+
},
|
|
378
|
+
"pageSize": {
|
|
379
|
+
"type": "integer",
|
|
380
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
381
|
+
"default": 100
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"required": [
|
|
385
|
+
"efoId"
|
|
386
|
+
]
|
|
387
|
+
},
|
|
388
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
389
|
+
"return_schema": {
|
|
390
|
+
"type": "object",
|
|
391
|
+
"description": "Cancer biomarkers disease-target association scores",
|
|
392
|
+
"properties": {
|
|
393
|
+
"disease_info": {
|
|
394
|
+
"type": "object",
|
|
395
|
+
"properties": {
|
|
396
|
+
"disease_id": {
|
|
397
|
+
"type": "string"
|
|
398
|
+
},
|
|
399
|
+
"disease_name": {
|
|
400
|
+
"type": "string"
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"datasource": {
|
|
405
|
+
"type": "string",
|
|
406
|
+
"description": "Always 'cancer_biomarkers'"
|
|
407
|
+
},
|
|
408
|
+
"total_targets_with_scores": {
|
|
409
|
+
"type": "integer"
|
|
410
|
+
},
|
|
411
|
+
"target_scores": {
|
|
412
|
+
"type": "array",
|
|
413
|
+
"items": {
|
|
414
|
+
"type": "object",
|
|
415
|
+
"properties": {
|
|
416
|
+
"target_symbol": {
|
|
417
|
+
"type": "string"
|
|
418
|
+
},
|
|
419
|
+
"target_id": {
|
|
420
|
+
"type": "string"
|
|
421
|
+
},
|
|
422
|
+
"datasource": {
|
|
423
|
+
"type": "string"
|
|
424
|
+
},
|
|
425
|
+
"score": {
|
|
426
|
+
"type": "number",
|
|
427
|
+
"description": "Cancer biomarkers score (0-1)"
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"type": "DiseaseTargetScoreTool"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"name": "europepmc_disease_target_score",
|
|
438
|
+
"description": "Extract disease-target association scores from Europe PMC literature. This includes literature-based evidence.",
|
|
439
|
+
"datasource_id": "europepmc",
|
|
440
|
+
"parameter": {
|
|
441
|
+
"type": "object",
|
|
442
|
+
"properties": {
|
|
443
|
+
"efoId": {
|
|
444
|
+
"type": "string",
|
|
445
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
446
|
+
},
|
|
447
|
+
"pageSize": {
|
|
448
|
+
"type": "integer",
|
|
449
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
450
|
+
"default": 100
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
"required": [
|
|
454
|
+
"efoId"
|
|
455
|
+
]
|
|
456
|
+
},
|
|
457
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
458
|
+
"return_schema": {
|
|
459
|
+
"type": "object",
|
|
460
|
+
"description": "Europe PMC literature disease-target association scores",
|
|
461
|
+
"properties": {
|
|
462
|
+
"disease_info": {
|
|
463
|
+
"type": "object",
|
|
464
|
+
"properties": {
|
|
465
|
+
"disease_id": {
|
|
466
|
+
"type": "string"
|
|
467
|
+
},
|
|
468
|
+
"disease_name": {
|
|
469
|
+
"type": "string"
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
"datasource": {
|
|
474
|
+
"type": "string",
|
|
475
|
+
"description": "Always 'europepmc'"
|
|
476
|
+
},
|
|
477
|
+
"total_targets_with_scores": {
|
|
478
|
+
"type": "integer"
|
|
479
|
+
},
|
|
480
|
+
"target_scores": {
|
|
481
|
+
"type": "array",
|
|
482
|
+
"items": {
|
|
483
|
+
"type": "object",
|
|
484
|
+
"properties": {
|
|
485
|
+
"target_symbol": {
|
|
486
|
+
"type": "string"
|
|
487
|
+
},
|
|
488
|
+
"target_id": {
|
|
489
|
+
"type": "string"
|
|
490
|
+
},
|
|
491
|
+
"datasource": {
|
|
492
|
+
"type": "string"
|
|
493
|
+
},
|
|
494
|
+
"score": {
|
|
495
|
+
"type": "number",
|
|
496
|
+
"description": "Europe PMC literature score (0-1)"
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
"type": "DiseaseTargetScoreTool"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "expression_atlas_disease_target_score",
|
|
507
|
+
"description": "Extract disease-target association scores from Expression Atlas. This provides gene expression data.",
|
|
508
|
+
"datasource_id": "expression_atlas",
|
|
509
|
+
"parameter": {
|
|
510
|
+
"type": "object",
|
|
511
|
+
"properties": {
|
|
512
|
+
"efoId": {
|
|
513
|
+
"type": "string",
|
|
514
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
515
|
+
},
|
|
516
|
+
"pageSize": {
|
|
517
|
+
"type": "integer",
|
|
518
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
519
|
+
"default": 100
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
"required": [
|
|
523
|
+
"efoId"
|
|
524
|
+
]
|
|
525
|
+
},
|
|
526
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
527
|
+
"return_schema": {
|
|
528
|
+
"type": "object",
|
|
529
|
+
"description": "Expression Atlas gene expression disease-target association scores",
|
|
530
|
+
"properties": {
|
|
531
|
+
"disease_info": {
|
|
532
|
+
"type": "object",
|
|
533
|
+
"properties": {
|
|
534
|
+
"disease_id": {
|
|
535
|
+
"type": "string"
|
|
536
|
+
},
|
|
537
|
+
"disease_name": {
|
|
538
|
+
"type": "string"
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
"datasource": {
|
|
543
|
+
"type": "string",
|
|
544
|
+
"description": "Always 'expression_atlas'"
|
|
545
|
+
},
|
|
546
|
+
"total_targets_with_scores": {
|
|
547
|
+
"type": "integer"
|
|
548
|
+
},
|
|
549
|
+
"target_scores": {
|
|
550
|
+
"type": "array",
|
|
551
|
+
"items": {
|
|
552
|
+
"type": "object",
|
|
553
|
+
"properties": {
|
|
554
|
+
"target_symbol": {
|
|
555
|
+
"type": "string"
|
|
556
|
+
},
|
|
557
|
+
"target_id": {
|
|
558
|
+
"type": "string"
|
|
559
|
+
},
|
|
560
|
+
"datasource": {
|
|
561
|
+
"type": "string"
|
|
562
|
+
},
|
|
563
|
+
"score": {
|
|
564
|
+
"type": "number",
|
|
565
|
+
"description": "Expression Atlas score (0-1)"
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"type": "DiseaseTargetScoreTool"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"name": "genomics_england_disease_target_score",
|
|
576
|
+
"description": "Extract disease-target association scores from Genomics England data. This includes clinical genomics evidence.",
|
|
577
|
+
"datasource_id": "genomics_england",
|
|
578
|
+
"parameter": {
|
|
579
|
+
"type": "object",
|
|
580
|
+
"properties": {
|
|
581
|
+
"efoId": {
|
|
582
|
+
"type": "string",
|
|
583
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
584
|
+
},
|
|
585
|
+
"pageSize": {
|
|
586
|
+
"type": "integer",
|
|
587
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
588
|
+
"default": 100
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"required": [
|
|
592
|
+
"efoId"
|
|
593
|
+
]
|
|
594
|
+
},
|
|
595
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
596
|
+
"return_schema": {
|
|
597
|
+
"type": "object",
|
|
598
|
+
"description": "Genomics England clinical genomics disease-target association scores",
|
|
599
|
+
"properties": {
|
|
600
|
+
"disease_info": {
|
|
601
|
+
"type": "object",
|
|
602
|
+
"properties": {
|
|
603
|
+
"disease_id": {
|
|
604
|
+
"type": "string"
|
|
605
|
+
},
|
|
606
|
+
"disease_name": {
|
|
607
|
+
"type": "string"
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"datasource": {
|
|
612
|
+
"type": "string",
|
|
613
|
+
"description": "Always 'genomics_england'"
|
|
614
|
+
},
|
|
615
|
+
"total_targets_with_scores": {
|
|
616
|
+
"type": "integer"
|
|
617
|
+
},
|
|
618
|
+
"target_scores": {
|
|
619
|
+
"type": "array",
|
|
620
|
+
"items": {
|
|
621
|
+
"type": "object",
|
|
622
|
+
"properties": {
|
|
623
|
+
"target_symbol": {
|
|
624
|
+
"type": "string"
|
|
625
|
+
},
|
|
626
|
+
"target_id": {
|
|
627
|
+
"type": "string"
|
|
628
|
+
},
|
|
629
|
+
"datasource": {
|
|
630
|
+
"type": "string"
|
|
631
|
+
},
|
|
632
|
+
"score": {
|
|
633
|
+
"type": "number",
|
|
634
|
+
"description": "Genomics England score (0-1)"
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"type": "DiseaseTargetScoreTool"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"name": "reactome_disease_target_score",
|
|
645
|
+
"description": "Extract disease-target association scores from Reactome pathway data. This includes pathway-based evidence.",
|
|
646
|
+
"datasource_id": "reactome",
|
|
647
|
+
"parameter": {
|
|
648
|
+
"type": "object",
|
|
649
|
+
"properties": {
|
|
650
|
+
"efoId": {
|
|
651
|
+
"type": "string",
|
|
652
|
+
"description": "The EFO (Experimental Factor Ontology) ID of the disease, e.g., 'EFO_0000339' for chronic myelogenous leukemia"
|
|
653
|
+
},
|
|
654
|
+
"pageSize": {
|
|
655
|
+
"type": "integer",
|
|
656
|
+
"description": "Number of results per page (default: 100, max: 100)",
|
|
657
|
+
"default": 100
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
"required": [
|
|
661
|
+
"efoId"
|
|
662
|
+
]
|
|
663
|
+
},
|
|
664
|
+
"query_schema": "query getTargets($efoId: String!, $index: Int!, $size: Int!) { disease(efoId: $efoId) { id name associatedTargets(page: { index: $index, size: $size }) { count rows { target { approvedSymbol id } datasourceScores { id score } } } } }",
|
|
665
|
+
"return_schema": {
|
|
666
|
+
"type": "object",
|
|
667
|
+
"description": "Reactome pathway disease-target association scores",
|
|
668
|
+
"properties": {
|
|
669
|
+
"disease_info": {
|
|
670
|
+
"type": "object",
|
|
671
|
+
"properties": {
|
|
672
|
+
"disease_id": {
|
|
673
|
+
"type": "string"
|
|
674
|
+
},
|
|
675
|
+
"disease_name": {
|
|
676
|
+
"type": "string"
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"datasource": {
|
|
681
|
+
"type": "string",
|
|
682
|
+
"description": "Always 'reactome'"
|
|
683
|
+
},
|
|
684
|
+
"total_targets_with_scores": {
|
|
685
|
+
"type": "integer"
|
|
686
|
+
},
|
|
687
|
+
"target_scores": {
|
|
688
|
+
"type": "array",
|
|
689
|
+
"items": {
|
|
690
|
+
"type": "object",
|
|
691
|
+
"properties": {
|
|
692
|
+
"target_symbol": {
|
|
693
|
+
"type": "string"
|
|
694
|
+
},
|
|
695
|
+
"target_id": {
|
|
696
|
+
"type": "string"
|
|
697
|
+
},
|
|
698
|
+
"datasource": {
|
|
699
|
+
"type": "string"
|
|
700
|
+
},
|
|
701
|
+
"score": {
|
|
702
|
+
"type": "number",
|
|
703
|
+
"description": "Reactome pathway score (0-1)"
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
},
|
|
710
|
+
"type": "DiseaseTargetScoreTool"
|
|
711
|
+
}
|
|
712
|
+
]
|