File size: 50,986 Bytes
bd52a47 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 | """
Database and Reference Query Tools
External knowledge retrieval tools that query biological databases
for marker genes, cell type information, and reference datasets.
All tools are standalone functions following Biomni pattern.
"""
# Lightweight imports - keep at module level
import os
import pandas as pd
import numpy as np
from typing import Annotated, Literal
from os.path import exists
from sklearn.metrics.pairwise import cosine_similarity
from langchain_core.tools import tool
from pydantic import Field
from .utils import find_most_similar, _embed_with_retry, _get_cache_key, _load_cached_embeddings, _save_cached_embeddings
# Module-level config (set via configure_database_tools)
_config = {
"data_path": "./data",
}
def configure_database_tools(data_path: str = "./data"):
"""Configure paths for database tools. Call this before using the tools."""
_config["data_path"] = data_path
def get_data_path() -> str:
"""Get the configured data path."""
return _config["data_path"]
# NOTE: text-embedding-3-small outperforms local models (pubmedbert, bge-large) for
# database cell type matching. Benchmark (2025-12-30) showed:
# - text-embedding-3-small: 100% accuracy (5/5 queries)
# - pubmedbert (local): 60% accuracy (3/5 queries) - fails on immune cells
# Local models incorrectly match "T cells" -> "Neurons", "B cells" -> "Satellite glial cells"
# See: experiments/embedding_benchmark/DATABASE_BENCHMARK_RESULTS.md
DEFAULT_EMBEDDING_MODEL = "text-embedding-3-small"
# =============================================================================
# Tool 1: PanglaoDB Search
# =============================================================================
@tool
def search_panglao(
cell_types: Annotated[str, Field(description="Cell types to search - either comma-separated list (e.g., 'T cell, B cell, macrophage') or path to CSV file with 'cell_type' column")],
organism: Annotated[Literal["Hs", "Mm"], Field(description="Species: Hs (human) or Mm (mouse)")],
tissue: Annotated[str, Field(description="Target tissue context (e.g., brain, liver, pancreas)")],
save_path: Annotated[str, Field(description="Directory to save results (optional)")] = None,
iter_round: Annotated[int, Field(ge=1, le=3, description="Iteration round for panel design (1-3)")] = None,
) -> str:
"""Search PanglaoDB for marker genes of given cell types.
Examples:
- Direct input: cell_types="T cell, B cell, macrophage"
- From CSV: cell_types="/path/to/czi_reference_celltype_1.csv"
- For panel design: iter_round=1 produces pangdb_celltype_1.csv
Returns:
str: Formatted string with marker genes. Example output:
PanglaoDB Results (Hs, brain):
T cell (matched: T cells):
Marker genes (15): ['CD3D', 'CD3E', 'CD4', ...]
B cell (matched: B cells):
Marker genes (12): ['CD19', 'MS4A1', 'CD79A', ...]
Saved to: /path/to/pangdb_celltype_1.csv
"""
from ..agent import make_llm_emb, get_effective_embedding_model
# Get the actual embedding model that will be used (may be overridden by env vars)
effective_model = get_effective_embedding_model(DEFAULT_EMBEDDING_MODEL)
# Create embedding models with appropriate input_type for Cohere
llm_embed_query = make_llm_emb(DEFAULT_EMBEDDING_MODEL, input_type="search_query")
llm_embed_doc = make_llm_emb(DEFAULT_EMBEDDING_MODEL, input_type="search_document")
# Parse cell_types input - either CSV path or comma-separated list
if cell_types.endswith('.csv') and os.path.exists(cell_types):
df_input = pd.read_csv(cell_types).astype(str)
if 'cell_type' not in df_input.columns:
return f"ERROR: CSV file must have 'cell_type' column. Found columns: {list(df_input.columns)}"
cell_type_list = df_input['cell_type'].unique().tolist()
else:
cell_type_list = [ct.strip() for ct in cell_types.split(',')]
if not cell_type_list:
return "ERROR: No cell types provided"
# Load PanglaoDB
panglao_path = f"{get_data_path()}/PanglaoDB_markers_27_Mar_2020.tsv"
df_panglao = pd.read_csv(panglao_path, sep="\t")
df_panglao = df_panglao[df_panglao["species"].str.contains(organism, na=False)]
# Create semantic descriptions for matching
query_descriptions = [f"{organism}; {ct}; {tissue}" for ct in cell_type_list]
df_panglao["description_all"] = (
df_panglao[["species", "cell type", "organ"]].astype(str).agg("; ".join, axis=1)
)
db_descriptions = list(df_panglao["description_all"].unique())
# Match using embeddings with correct input_type
# Use effective_model for cache key to handle env var overrides (e.g., USE_LOCAL_EMBEDDINGS)
matched = find_most_similar(
llm_embed_query, query_descriptions, db_descriptions,
llm_emb_doc=llm_embed_doc,
database=f"panglao_{organism}",
embedding_model=effective_model
)
# Extract marker genes (filter out nan values and duplicates)
# Use column names expected by score_gene_importance tool
res = {"cell_type": [], "cell_type_pangdb": [], "marker_genes": []}
for cell_type, query_desc, panglao_match in zip(cell_type_list, query_descriptions, matched):
res["cell_type"].append(cell_type)
res["cell_type_pangdb"].append(panglao_match.split(";")[1].strip())
markers = df_panglao.loc[
df_panglao["description_all"] == panglao_match,
"official gene symbol"
].dropna().unique().tolist()
res["marker_genes"].append(markers)
# Save if path provided
df_result = pd.DataFrame(res)
if save_path:
os.makedirs(save_path, exist_ok=True)
# Use iteration-specific filename if iter_round is provided
if iter_round is not None:
save_csv = f"{save_path}/pangdb_celltype_{iter_round}.csv"
else:
save_csv = f"{save_path}/pangdb_markers.csv"
df_result.to_csv(save_csv, index=False)
# Build clear output showing marker genes for each cell type
output_lines = [f"PanglaoDB Results ({organism}, {tissue}):"]
for _, row in df_result.iterrows():
genes = row['marker_genes']
n_genes = len(genes) if isinstance(genes, list) else 0
output_lines.append(f"\n{row['cell_type']} (matched: {row['cell_type_pangdb']}):")
output_lines.append(f" Marker genes ({n_genes}): {genes}")
if save_path:
output_lines.append(f"\nSaved to: {save_csv}")
output = "\n".join(output_lines)
# print(output) # Removed: duplicates output in agent's observation when tool is called via execute_python
return output
# =============================================================================
# Tool 2: CZI Dataset Retrieval
# =============================================================================
@tool
def search_czi_datasets(
query: Annotated[str, Field(description="Query describing the condition or context (e.g., 'breast cancer', 'normal development'). Do NOT include organism or tissue here — use the dedicated parameters instead.")],
n_datasets: Annotated[int, Field(description="Number of top datasets to return")] = 1,
organism: Annotated[str, Field(description="Filter by organism (e.g., 'Mus musculus', 'Homo sapiens'). Always pass this when the organism is known.")] = None,
tissue: Annotated[str, Field(description="Filter by tissue keyword (e.g., 'lung', 'brain'). Matches against tissue and tissue_general columns. Always pass this when the tissue is known.")] = None,
) -> str:
"""Search CZI CELLxGENE Census for reference single-cell datasets.
When the query mentions an organism or tissue, pass them as the dedicated
``organism`` and ``tissue`` parameters so they are used as hard pre-filters
before embedding-based ranking. The ``query`` should contain only the
condition or context (e.g., 'breast cancer', 'normal development').
If strict filtering returns fewer than ``n_datasets`` results, the function
progressively relaxes filters (drop tissue first, then organism) and
includes a warning in the output.
Returns:
str: Formatted string with dataset info. Example output:
CZI CELLxGENE Search Results for 'heart, Homo sapiens':
Dataset 1:
dataset_id: e6a11140-2545-46bc-929e-da243eed2cae
dataset_title: Tabula Sapiens - Heart
collection_name: Tabula Sapiens
organism: Homo sapiens
tissue: cardiac atrium;cardiac ventricle
disease: normal
similarity_score: 0.666
To extract dataset_id from the output string:
for line in result.split('\\n'):
if 'dataset_id:' in line:
dataset_id = line.split('dataset_id:')[1].strip()
break
"""
from ..agent import make_llm_emb, get_effective_embedding_model
# Get the actual embedding model that will be used (may be overridden by env vars)
effective_model = get_effective_embedding_model(DEFAULT_EMBEDDING_MODEL)
# Create embedding models with appropriate input_type for Cohere
llm_embed_query = make_llm_emb(DEFAULT_EMBEDDING_MODEL, input_type="search_query")
llm_embed_doc = make_llm_emb(DEFAULT_EMBEDDING_MODEL, input_type="search_document")
# Load CZI Census metadata
metadata_path = f"{get_data_path()}/czi_census_datasets_v4_short.csv"
if not os.path.exists(metadata_path):
return f"ERROR: CZI metadata file not found at {metadata_path}"
df = pd.read_csv(metadata_path)
# Pre-filter by organism and tissue with controlled relaxation
filter_warnings = []
applied_organism = None
applied_tissue = None
if organism or tissue:
# Try strict filter: both organism and tissue
df_strict = df
if organism:
df_strict = df_strict[df_strict["organism"] == organism]
if tissue:
tissue_lower = tissue.lower()
df_strict = df_strict[
df_strict["tissue"].str.lower().str.contains(tissue_lower, na=False)
| df_strict["tissue_general"].str.lower().str.contains(tissue_lower, na=False)
]
if len(df_strict) >= n_datasets:
df = df_strict
applied_organism = organism
applied_tissue = tissue
elif organism and tissue:
# Relax: drop tissue, keep organism only
df_org_only = df[df["organism"] == organism]
if len(df_org_only) >= n_datasets:
df = df_org_only
applied_organism = organism
filter_warnings.append(
f"Note: Only {len(df_strict)} datasets matched "
f"organism='{organism}' AND tissue='{tissue}' "
f"(fewer than {n_datasets} requested). "
f"Relaxed to organism='{organism}' only "
f"({len(df_org_only)} datasets)."
)
else:
filter_warnings.append(
f"Note: Only {len(df_org_only)} datasets matched "
f"organism='{organism}' (fewer than {n_datasets} "
f"requested). Using all {len(df)} datasets."
)
else:
# Single filter with too few results
filter_name = "organism" if organism else "tissue"
filter_val = organism if organism else tissue
filter_warnings.append(
f"Note: Only {len(df_strict)} datasets matched "
f"{filter_name}='{filter_val}' (fewer than {n_datasets} "
f"requested). Using all {len(df)} datasets."
)
df = df.reset_index(drop=True)
# Create descriptions for each dataset
df["description"] = (
df["organism"].astype(str) + "; " +
df["tissue"].astype(str) + "; " +
df["disease"].astype(str) + "; " +
df["dataset_title"].astype(str)
)
descriptions = df["description"].tolist()
# Embed query with retry
query_embedding = _embed_with_retry(llm_embed_query, [query])
# Check for cached description embeddings (use effective_model for cache key)
# Include actually-applied filters in identifier to avoid cache collisions
db_id = "czi_census"
if applied_organism:
db_id += f"_{applied_organism.replace(' ', '_')}"
if applied_tissue:
db_id += f"_{applied_tissue.lower()}"
cache_key = _get_cache_key(db_id, effective_model, len(descriptions))
desc_embeddings = _load_cached_embeddings(cache_key)
if desc_embeddings is None:
# Embed descriptions with retry
desc_embeddings = _embed_with_retry(llm_embed_doc, descriptions)
_save_cached_embeddings(cache_key, desc_embeddings)
# Find top-k most similar
similarities = cosine_similarity(query_embedding, desc_embeddings)[0]
top_indices = np.argsort(similarities)[-n_datasets:][::-1]
# Format results
results = [f"CZI CELLxGENE Search Results for '{query}':"]
for idx in top_indices:
row = df.iloc[idx]
similarity = similarities[idx]
result_str = (
f"\nDataset {len(results)}:\n"
f" dataset_id: {row['dataset_id']}\n"
f" dataset_title: {row['dataset_title']}\n"
f" collection_name: {row['collection_name']}\n"
f" organism: {row['organism']}\n"
f" tissue: {row['tissue']}\n"
f" disease: {row['disease']}\n"
f" similarity_score: {similarity:.3f}"
)
results.append(result_str)
output = "\n".join(results)
if filter_warnings:
output = "\n".join(filter_warnings) + "\n\n" + output
return output
# =============================================================================
# Tool 3: CellMarker2 Search
# =============================================================================
@tool
def search_cellmarker2(
cell_types: Annotated[str, Field(description="Cell types to search - either comma-separated list (e.g., 'hepatocyte, Kupffer cell') or path to CSV file with 'cell_type' column")],
organism: Annotated[str, Field(description="Organism: Human or Mouse")],
tissue: Annotated[str, Field(description="Target tissue context (e.g., liver, brain)")],
save_path: Annotated[str, Field(description="Directory to save results (optional)")] = None,
iter_round: Annotated[int, Field(ge=1, le=3, description="Iteration round for panel design (1-3)")] = None,
) -> str:
"""Search CellMarker2 database for marker genes of given cell types.
Examples:
- Direct input: cell_types="hepatocyte, Kupffer cell, stellate cell"
- From CSV: cell_types="/path/to/czi_reference_celltype_1.csv"
- For panel design: iter_round=1 produces cellmarker_celltype_1.csv
Returns:
str: Formatted string with marker genes. Example output:
CellMarker2 Results (Human, liver):
hepatocyte (matched: Hepatocyte):
Marker genes (25): ['ALB', 'APOA1', 'APOB', ...]
Kupffer cell (matched: Kupffer cell):
Marker genes (18): ['CD68', 'MARCO', 'CLEC4F', ...]
Saved to: /path/to/cellmarker_celltype_1.csv
"""
from ..agent import make_llm_emb, get_effective_embedding_model
# Get the actual embedding model that will be used (may be overridden by env vars)
effective_model = get_effective_embedding_model(DEFAULT_EMBEDDING_MODEL)
# Create embedding models with appropriate input_type for Cohere
llm_embed_query = make_llm_emb(DEFAULT_EMBEDDING_MODEL, input_type="search_query")
llm_embed_doc = make_llm_emb(DEFAULT_EMBEDDING_MODEL, input_type="search_document")
# Parse cell_types input - either CSV path or comma-separated list
if cell_types.endswith('.csv') and os.path.exists(cell_types):
df_input = pd.read_csv(cell_types).astype(str)
if 'cell_type' not in df_input.columns:
return f"ERROR: CSV file must have 'cell_type' column. Found columns: {list(df_input.columns)}"
cell_type_list = df_input['cell_type'].unique().tolist()
else:
cell_type_list = [ct.strip() for ct in cell_types.split(',')]
if not cell_type_list:
return "ERROR: No cell types provided"
# Load CellMarker2
df_cellmarker2 = pd.read_csv(f"{get_data_path()}/Cell_marker_All.csv")
df_cellmarker2 = df_cellmarker2[df_cellmarker2["species"].str.contains(organism, na=False)]
df_cellmarker2 = df_cellmarker2.astype("str")
# Create semantic descriptions for matching
query_descriptions = [f"{organism}; {ct}; {tissue}" for ct in cell_type_list]
df_cellmarker2["description_all"] = (
df_cellmarker2[["species", "cell_type", "cell_name", "tissue_class", "tissue_type"]]
.astype(str)
.agg("; ".join, axis=1)
)
db_descriptions = list(df_cellmarker2["description_all"].unique())
# Match using embeddings with correct input_type
# Use effective_model for cache key to handle env var overrides (e.g., USE_LOCAL_EMBEDDINGS)
matched = find_most_similar(
llm_embed_query, query_descriptions, db_descriptions,
llm_emb_doc=llm_embed_doc,
database=f"cellmarker2_{organism}",
embedding_model=effective_model
)
# Extract markers (filter out nan values and duplicates)
# Use column names expected by score_gene_importance tool
res = {"cell_type": [], "cell_type_cellmarker": [], "marker_genes": []}
for cell_type, query_desc, cm2_match in zip(cell_type_list, query_descriptions, matched):
res["cell_type"].append(cell_type)
res["cell_type_cellmarker"].append(cm2_match.split(";")[2].strip())
markers = df_cellmarker2.loc[
df_cellmarker2["description_all"] == cm2_match, "Symbol"
].dropna().unique().tolist()
# Filter out 'nan' strings as well (from .astype(str) conversion)
markers = [m for m in markers if m.lower() != 'nan']
res["marker_genes"].append(markers)
# Save if path provided
df_result = pd.DataFrame(res)
if save_path:
os.makedirs(save_path, exist_ok=True)
# Use iteration-specific filename if iter_round is provided
if iter_round is not None:
save_csv = f"{save_path}/cellmarker_celltype_{iter_round}.csv"
else:
save_csv = f"{save_path}/cellmarker2_markers.csv"
df_result.to_csv(save_csv, index=False)
# Build clear output showing marker genes for each cell type
output_lines = [f"CellMarker2 Results ({organism}, {tissue}):"]
for _, row in df_result.iterrows():
genes = row['marker_genes']
n_genes = len(genes) if isinstance(genes, list) else 0
output_lines.append(f"\n{row['cell_type']} (matched: {row['cell_type_cellmarker']}):")
output_lines.append(f" Marker genes ({n_genes}): {genes}")
if save_path:
output_lines.append(f"\nSaved to: {save_csv}")
output = "\n".join(output_lines)
# print(output) # Removed: duplicates output in agent's observation when tool is called via execute_python
return output
# =============================================================================
# Tool 4: CZI Data Reader
# =============================================================================
@tool
def extract_czi_markers(
save_path: Annotated[str, Field(description="Experiment directory")],
dataset_id: Annotated[str, Field(description="CZI dataset ID or comma-separated list")],
iter_round: Annotated[int, Field(ge=1, le=3, description="Iteration round (1-3)")],
organism: Annotated[Literal["Homo sapiens", "Mus musculus"], Field(description="Organism species")] = "Mus musculus",
) -> str:
"""Read and process CZI database reference datasets to extract cell types and marker genes.
This tool downloads the dataset from CZI Census, extracts cell types and their marker genes,
and saves the results to: {save_path}/czi_reference_celltype_{iter_round}.csv
Use different iter_round values (1, 2, 3) when performing iterative panel design to avoid
overwriting previous results.
Returns:
str: Status message. Example output:
Successfully processed 1 CZI dataset(s) with 18 cell types. Saved to /path/to/czi_reference_celltype_1.csv
Note: 15 cell types have marker genes from CellGuide, 3 do not (may need PanglaoDB/CellMarker2 lookup).
The saved CSV file contains columns: cell_type, cell_type_id, n_cells, marker_genes, cano_marker_genes
"""
# Heavy imports - only load when this tool is called
import cellxgene_census
import requests
CELL_GUIDE_BASE_URI = "https://cellguide.cellxgene.cziscience.com"
LATEST_SNAPSHOT = requests.get(f"{CELL_GUIDE_BASE_URI}/latest_snapshot_identifier").text.replace('\n', '')
def get_cellguide_file(relpth, snapshot=LATEST_SNAPSHOT):
req = requests.get(f"{CELL_GUIDE_BASE_URI}/{snapshot}/{relpth}")
if req.text == "":
raise ValueError(f"No record found for {snapshot}/{relpth}")
return req
save_csv = f"{save_path}/czi_reference_celltype_{iter_round}.csv"
if exists(save_csv):
msg = f"CZI reference data already exists at {save_csv}"
return msg
print(f"[extract_czi_markers] Processing {dataset_id}...")
# Handle multiple dataset IDs
dataset_ids = [d.strip() for d in dataset_id.split(",")]
# Read from CZI Census
census = cellxgene_census.open_soma(census_version="latest")
try:
all_results = []
for did in dataset_ids:
# Query dataset
query = f'dataset_id == "{did}"'
adata = cellxgene_census.get_anndata(census, organism, obs_value_filter=query)
# Get cell types
cell_types = adata.obs["cell_type"].value_counts()
for cell_type, count in cell_types.items():
# Get cell_type_id with error handling for empty results
cell_type_mask = adata.obs["cell_type"] == cell_type
cell_type_ids = adata.obs[cell_type_mask]["cell_type_ontology_term_id"].values
if len(cell_type_ids) == 0:
continue # Skip if no cell_type_ontology_term_id found
cell_type_id = cell_type_ids[0]
# Get marker genes from CellGuide
# Note: CellGuide uses underscore format (CL_0000182) not colon format (CL:0000182)
cellguide_id = cell_type_id.replace(":", "_")
comp_genes = []
cano_genes = []
# Limit marker genes to top N for readability (CellGuide can return 500+ genes)
MAX_MARKER_GENES = 100
# Helper to convert gene symbols based on organism
# CellGuide returns mouse-format symbols (title case like 'Grin2b')
# Human genes should be uppercase (GRIN2B), mouse stays title case
def normalize_gene_symbol(gene: str) -> str:
if organism == "Homo sapiens":
return gene.upper()
return gene # Keep mouse format as-is
try:
comp_markers = get_cellguide_file(f"computational_marker_genes/{cellguide_id}.json")
if comp_markers.status_code == 200 and comp_markers.text:
comp_markers_df = pd.DataFrame.from_records(comp_markers.json())
# Gene symbol is in 'symbol' column, not 'marker_gene'
if "symbol" in comp_markers_df.columns:
comp_genes = [normalize_gene_symbol(g) for g in comp_markers_df["symbol"].tolist()[:MAX_MARKER_GENES]]
elif "marker_gene" in comp_markers_df.columns:
comp_genes = [normalize_gene_symbol(g) for g in comp_markers_df["marker_gene"].tolist()[:MAX_MARKER_GENES]]
except Exception:
pass # CellGuide may not have data for all cell types
try:
cano_markers = get_cellguide_file(f"canonical_marker_genes/{cellguide_id}.json")
if cano_markers.status_code == 200 and cano_markers.text:
cano_markers_df = pd.DataFrame.from_records(cano_markers.json())
if "symbol" in cano_markers_df.columns:
cano_genes = [normalize_gene_symbol(g) for g in cano_markers_df["symbol"].tolist()[:MAX_MARKER_GENES]]
elif "marker_gene" in cano_markers_df.columns:
cano_genes = [normalize_gene_symbol(g) for g in cano_markers_df["marker_gene"].tolist()[:MAX_MARKER_GENES]]
except Exception:
pass
all_results.append({
"cell_type": cell_type,
"cell_type_id": cell_type_id,
"n_cells": count,
"marker_genes": comp_genes,
"cano_marker_genes": cano_genes,
})
# Save
df_results = pd.DataFrame(all_results)
df_results.to_csv(save_csv, index=False)
# Count how many cell types have marker genes
n_with_markers = sum(1 for r in all_results if r["marker_genes"] or r["cano_marker_genes"])
n_without_markers = len(all_results) - n_with_markers
msg = f"Successfully processed {len(dataset_ids)} CZI dataset(s) with {len(all_results)} cell types. Saved to {save_csv}"
if n_without_markers > 0:
msg += f"\nNote: {n_with_markers} cell types have marker genes from CellGuide, {n_without_markers} do not (may need PanglaoDB/CellMarker2 lookup)."
return msg
finally:
census.close()
# =============================================================================
# Tool 5: Download CZI Reference (for Harmony integration)
# =============================================================================
@tool
def download_czi_reference(
dataset_id: Annotated[str, Field(description="CZI dataset ID from search_czi_datasets")],
organism: Annotated[str, Field(description="Species: 'Homo sapiens' or 'Mus musculus'")],
save_path: Annotated[str, Field(description="Experiment directory")],
) -> str:
"""Download CZI reference scRNA-seq data for cell type annotation via Harmony integration.
This tool downloads a reference scRNA-seq dataset from CZI Census and saves it as h5ad.
The downloaded reference can then be used with harmony_transfer_labels to transfer
cell type annotations to spatial transcriptomics data.
Workflow:
1. Use search_czi_datasets to find a matching reference dataset
2. Use download_czi_reference to download the reference h5ad (this tool)
3. Use harmony_transfer_labels to transfer cell types from reference to spatial data
Output:
- Saves reference h5ad to: {save_path}/czi_reference/sc_reference_{dataset_id}.h5ad
- Returns path to the downloaded reference file
"""
# Heavy imports - only load when this tool is called
import cellxgene_census
import scanpy as sc
# Create reference directory
ref_dir = f"{save_path}/czi_reference"
os.makedirs(ref_dir, exist_ok=True)
# Output path for reference h5ad
ref_adata_path = f"{ref_dir}/sc_reference_{dataset_id}.h5ad"
# Check if already exists
if exists(ref_adata_path):
# Load to get cell count info
adata = sc.read_h5ad(ref_adata_path)
n_cells = adata.shape[0]
n_celltypes = len(adata.obs["cell_type"].unique())
msg = f"Reference data already exists at {ref_adata_path} ({n_cells:,} cells, {n_celltypes} cell types)"
print(msg)
return msg
print(f"[download_czi_reference] Downloading dataset {dataset_id}...")
try:
# Open CZI Census
census = cellxgene_census.open_soma(census_version="latest")
try:
# Download the dataset
adata = cellxgene_census.get_anndata(
census,
organism=organism,
obs_value_filter=f'dataset_id == "{dataset_id}"'
)
if adata.shape[0] == 0:
msg = f"ERROR: No cells found for dataset_id '{dataset_id}'. Please verify the dataset ID."
print(msg)
return msg
# Filter out genes with zero expression
gene_sums = np.array(adata.X.sum(axis=0)).flatten()
adata = adata[:, gene_sums > 0]
# Filter out "unknown" cell types
adata = adata[adata.obs["cell_type"] != "unknown"]
# Filter cell types with too few cells (< 10)
cell_type_counts = adata.obs["cell_type"].value_counts()
valid_types = cell_type_counts[cell_type_counts >= 10].index
adata = adata[adata.obs["cell_type"].isin(valid_types)]
if adata.shape[0] == 0:
msg = f"ERROR: No valid cells remaining after filtering for dataset '{dataset_id}'."
print(msg)
return msg
# Convert categorical columns to save properly
for col in adata.obs.columns:
adata.obs[col] = pd.Categorical(adata.obs[col].astype(str))
for col in adata.var.columns:
adata.var[col] = pd.Categorical(adata.var[col].astype(str))
# Save reference h5ad
adata.write_h5ad(ref_adata_path, compression="gzip")
# Get summary info
n_cells = adata.shape[0]
n_genes = adata.shape[1]
cell_types = adata.obs["cell_type"].unique().tolist()
n_celltypes = len(cell_types)
# Also save a summary file
summary_path = f"{ref_dir}/reference_info_{dataset_id}.txt"
summary = f"""CZI Reference Dataset Summary
=============================
Dataset ID: {dataset_id}
Organism: {organism}
Cells: {n_cells:,}
Genes: {n_genes:,}
Cell types ({n_celltypes}): {', '.join(sorted(cell_types)[:20])}{'...' if n_celltypes > 20 else ''}
Reference file: {ref_adata_path}
"""
with open(summary_path, 'w') as f:
f.write(summary)
msg = f"""Successfully downloaded CZI reference dataset.
- Path: {ref_adata_path}
- Cells: {n_cells:,}
- Genes: {n_genes:,}
- Cell types: {n_celltypes}
Next step: Use harmony_transfer_labels with ref_path="{ref_adata_path}" to transfer annotations."""
print(msg)
return msg
finally:
census.close()
except Exception as e:
msg = f"ERROR downloading CZI reference: {str(e)}"
print(msg)
return msg
# =============================================================================
# Tool 6: Query Tissue Expression (ARCHS4)
# =============================================================================
@tool
def query_tissue_expression(
gene: Annotated[str, Field(description="Gene symbol to query (e.g., 'GFAP', 'SLC17A7')")],
top_k: Annotated[int, Field(ge=1, le=50, description="Number of top tissues to return")] = 10,
) -> str:
"""Query ARCHS4 database for tissue-specific gene expression.
Returns median TPM (transcripts per million) across human tissues for a gene.
Useful for validating that marker genes are expressed in the target tissue.
Examples:
- query_tissue_expression({"gene": "GFAP", "top_k": 5}) # Astrocyte marker
- query_tissue_expression({"gene": "SLC17A7"}) # Neuronal marker
"""
import gget
from .utils import parse_list_string
# Handle case where LLM passes a stringified list like "['CD3D', 'MS4A6A']"
genes = parse_list_string(gene)
if len(genes) > 1:
# Process multiple genes and combine results
all_results = []
for g in genes:
result = query_tissue_expression(g, top_k)
all_results.append(result)
return "\n\n".join(all_results)
# Single gene - use the parsed value
gene = genes[0] if genes else gene
try:
# Fetch tissue expression data from ARCHS4
data = gget.archs4(gene, which="tissue")
if data is None or data.empty:
msg = f"No expression data found for gene '{gene}' in ARCHS4."
print(msg)
return msg
# Format results
results = [f"Tissue expression for {gene} (top {top_k} tissues by median TPM):"]
for idx, row in data.head(top_k).iterrows():
tissue = row.get("id", row.get("tissue", "Unknown"))
median_tpm = row.get("median", row.get("median_tpm", 0))
results.append(f" {tissue}: {median_tpm:.2f} TPM")
output = "\n".join(results)
# print(output) # Removed: duplicates output in agent's observation when tool is called via execute_python
return output
except Exception as e:
msg = f"Error querying ARCHS4 for gene '{gene}': {e}"
print(msg)
return msg
# =============================================================================
# Tool 7: Query Cell Type Gene Sets (Enrichr)
# =============================================================================
@tool
def query_celltype_genesets(
tissue: Annotated[str, Field(description="Tissue type to search for cell type markers (e.g., 'brain', 'liver')")],
top_k: Annotated[int, Field(ge=1, le=20, description="Number of top gene sets to return")] = 10,
) -> str:
"""Query Enrichr/PanglaoDB for cell type-specific gene sets in a tissue.
Returns curated cell type marker gene sets relevant to the specified tissue.
Uses the PanglaoDB_Augmented_2021 database from Enrichr.
Examples:
- query_celltype_genesets({"tissue": "brain", "top_k": 10})
- query_celltype_genesets({"tissue": "liver"})
"""
import gget
# Use common marker genes for the tissue to find relevant cell type gene sets
tissue_seed_genes = {
"brain": ["GFAP", "SLC17A7", "GAD1", "MBP", "AIF1", "RBFOX3"],
"liver": ["ALB", "CYP3A4", "KRT19", "CLEC4G", "CD68", "ACTA2"],
"lung": ["SFTPC", "SCGB1A1", "PECAM1", "CD68", "ACTA2", "KRT5"],
"heart": ["MYH7", "TNNT2", "PECAM1", "VWF", "CD68", "ACTA2"],
"kidney": ["SLC12A1", "AQP2", "NPHS1", "PECAM1", "CD68", "ACTA2"],
"pancreas": ["INS", "GCG", "KRT19", "AMY2A", "CD68", "ACTA2"],
"skin": ["KRT14", "KRT1", "TYRP1", "CD68", "PECAM1", "ACTA2"],
"intestine": ["FABP2", "LGR5", "MUC2", "CHGA", "CD68", "ACTA2"],
}
# Get seed genes for the tissue, or use generic markers
seed_genes = tissue_seed_genes.get(
tissue.lower(),
["PTPRC", "CD68", "PECAM1", "ACTA2", "KRT18", "VIM"] # Generic markers
)
try:
# Query Enrichr with PanglaoDB cell type database
df = gget.enrichr(
seed_genes,
database="PanglaoDB_Augmented_2021",
plot=False
)
if df is None or df.empty:
return f"No cell type gene sets found for tissue '{tissue}'."
# Filter for tissue-relevant results and format output
results = [f"Cell type gene sets relevant to {tissue} (from PanglaoDB):"]
for idx, row in df.head(top_k).iterrows():
path_name = row.get("path_name", "Unknown")
p_val = row.get("p_val", 1.0)
genes = row.get("overlapping_genes", [])
# Extract cell type name from path_name (format: "Cell Type_Tissue_Species")
cell_type = path_name.split("_")[0] if "_" in path_name else path_name
results.append(f"\n {cell_type}:")
results.append(f" P-value: {p_val:.2e}")
results.append(f" Marker genes: {', '.join(genes[:10])}")
output = "\n".join(results)
# print(output) # Removed: duplicates output in agent's observation when tool is called via execute_python
return output
except Exception as e:
error_msg = f"Error querying cell type gene sets for '{tissue}': {e}"
print(error_msg)
return error_msg
# =============================================================================
# Tool 8: Validate Gene Expression in Tissue
# =============================================================================
@tool
def validate_genes_expression(
genes: Annotated[str, Field(description="Comma-separated list of gene symbols to validate")],
target_tissue: Annotated[str, Field(description="Target tissue to check expression in (e.g., 'brain', 'frontal cortex')")],
) -> str:
"""Validate that a list of genes are expressed in the target tissue.
Queries ARCHS4 for each gene and checks if the target tissue is in the top expressing tissues.
Returns a summary of which genes are validated as expressed vs not expressed.
Examples:
- validate_genes_expression({"genes": "GFAP, SLC17A7, GAD1", "target_tissue": "brain"})
"""
import gget
from .utils import parse_list_string
# Parse genes - handles "gene1, gene2" and "['gene1', 'gene2']" formats
gene_list = parse_list_string(genes, uppercase=True)
target_tissue_lower = target_tissue.lower()
expressed = []
not_expressed = []
not_found = []
for gene in gene_list:
try:
data = gget.archs4(gene, which="tissue")
if data is None or data.empty:
not_found.append(gene)
continue
# Check if target tissue is in top 20 expressing tissues
top_tissues = data.head(20)
tissue_names = [str(t).lower() for t in top_tissues.get("id", top_tissues.get("tissue", []))]
# Check if any top tissue contains the target tissue name
is_expressed = any(target_tissue_lower in t for t in tissue_names)
if is_expressed:
# Get the rank and TPM for the matching tissue
for idx, row in top_tissues.iterrows():
tissue = str(row.get("id", row.get("tissue", ""))).lower()
if target_tissue_lower in tissue:
tpm = row.get("median", row.get("median_tpm", 0))
expressed.append(f"{gene} (TPM: {tpm:.1f})")
break
else:
expressed.append(gene)
else:
not_expressed.append(gene)
except Exception:
not_found.append(gene)
# Format results
results = [f"Gene expression validation for '{target_tissue}':\n"]
results.append(f"Expressed ({len(expressed)}/{len(gene_list)}): {', '.join(expressed)}")
if not_expressed:
results.append(f"\nNot in top tissues ({len(not_expressed)}): {', '.join(not_expressed)}")
if not_found:
results.append(f"\nNot found in ARCHS4 ({len(not_found)}): {', '.join(not_found)}")
output = "\n".join(results)
# print(output) # Removed: duplicates output in agent's observation when tool is called via execute_python
return output
# =============================================================================
# Tool 9: Query Disease Genes from Real Databases
# =============================================================================
def _query_gwas_catalog(disease_trait: str, max_genes: int = 50) -> dict:
"""Query GWAS Catalog REST API for disease-associated genes.
API: https://www.ebi.ac.uk/gwas/rest/api
"""
import requests
base_url = "https://www.ebi.ac.uk/gwas/rest/api"
genes = []
associations = []
try:
# Search for studies related to the disease/trait
search_url = f"{base_url}/efoTraits/search/findByEfoUri"
# First, search for associations by trait
assoc_url = f"{base_url}/associations/search/findByDiseaseTrait"
params = {"diseaseTrait": disease_trait, "size": 100}
response = requests.get(assoc_url, params=params, timeout=30)
if response.status_code == 200:
data = response.json()
if "_embedded" in data and "associations" in data["_embedded"]:
for assoc in data["_embedded"]["associations"]:
# Get p-value
p_value = assoc.get("pvalue", 1.0)
# Get genes from the association
if "loci" in assoc:
for locus in assoc["loci"]:
if "authorReportedGenes" in locus:
for gene in locus["authorReportedGenes"]:
gene_name = gene.get("geneName", "")
if gene_name and gene_name not in genes:
genes.append(gene_name)
associations.append({
"gene": gene_name,
"p_value": p_value,
"trait": disease_trait
})
# Alternative: search by keyword in studies
if len(genes) < 10:
study_url = f"{base_url}/studies/search/findByDiseaseTrait"
params = {"diseaseTrait": disease_trait, "size": 50}
response = requests.get(study_url, params=params, timeout=30)
if response.status_code == 200:
data = response.json()
if "_embedded" in data and "studies" in data["_embedded"]:
for study in data["_embedded"]["studies"][:20]:
# Get associations for this study
if "_links" in study and "associations" in study["_links"]:
assoc_link = study["_links"]["associations"]["href"]
assoc_resp = requests.get(assoc_link, timeout=10)
if assoc_resp.status_code == 200:
assoc_data = assoc_resp.json()
if "_embedded" in assoc_data:
for assoc in assoc_data["_embedded"].get("associations", []):
if "loci" in assoc:
for locus in assoc["loci"]:
for gene in locus.get("authorReportedGenes", []):
gene_name = gene.get("geneName", "")
if gene_name and gene_name not in genes:
genes.append(gene_name)
if len(genes) >= max_genes:
break
return {
"source": "GWAS_Catalog",
"query": disease_trait,
"genes": genes[:max_genes],
"n_genes": len(genes[:max_genes]),
"associations": associations[:max_genes]
}
except Exception as e:
return {"source": "GWAS_Catalog", "error": str(e), "genes": []}
def _query_opentargets(disease_query: str, max_genes: int = 50) -> dict:
"""Query OpenTargets GraphQL API for disease-associated genes.
API: https://api.platform.opentargets.org/api/v4/graphql
"""
import requests
api_url = "https://api.platform.opentargets.org/api/v4/graphql"
try:
# First, search for diseases matching the query
search_query = """
query searchDiseases($queryString: String!) {
search(queryString: $queryString, entityNames: ["disease"], page: {size: 5, index: 0}) {
hits {
id
name
entity
}
}
}
"""
response = requests.post(
api_url,
json={"query": search_query, "variables": {"queryString": disease_query}},
timeout=30
)
if response.status_code != 200:
return {"source": "OpenTargets", "error": f"Search failed: {response.status_code}", "genes": []}
search_data = response.json()
hits = search_data.get("data", {}).get("search", {}).get("hits", [])
if not hits:
return {"source": "OpenTargets", "error": f"No diseases found for '{disease_query}'", "genes": []}
# Get the first disease match
disease_id = hits[0]["id"]
disease_name = hits[0]["name"]
# Query associated targets (genes) for this disease
targets_query = """
query diseaseAssociations($diseaseId: String!, $size: Int!) {
disease(efoId: $diseaseId) {
id
name
associatedTargets(page: {size: $size, index: 0}) {
count
rows {
target {
id
approvedSymbol
approvedName
}
score
datatypeScores {
id
score
}
}
}
}
}
"""
response = requests.post(
api_url,
json={
"query": targets_query,
"variables": {"diseaseId": disease_id, "size": max_genes}
},
timeout=30
)
if response.status_code != 200:
return {"source": "OpenTargets", "error": f"Targets query failed: {response.status_code}", "genes": []}
data = response.json()
disease_data = data.get("data", {}).get("disease", {})
if not disease_data:
return {"source": "OpenTargets", "error": "No disease data returned", "genes": []}
rows = disease_data.get("associatedTargets", {}).get("rows", [])
genes = []
gene_scores = []
for row in rows:
target = row.get("target", {})
gene_symbol = target.get("approvedSymbol", "")
if gene_symbol:
genes.append(gene_symbol)
gene_scores.append({
"gene": gene_symbol,
"name": target.get("approvedName", ""),
"score": row.get("score", 0)
})
return {
"source": "OpenTargets",
"query": disease_query,
"disease_id": disease_id,
"disease_name": disease_name,
"genes": genes,
"n_genes": len(genes),
"gene_details": gene_scores
}
except Exception as e:
return {"source": "OpenTargets", "error": str(e), "genes": []}
@tool
def query_disease_genes(
disease: Annotated[str, Field(description="Disease or trait to search (e.g., 'Alzheimer disease', 'schizophrenia', 'type 2 diabetes', 'cognitive function')")],
source: Annotated[str, Field(description="Database to query: 'opentargets', 'gwas', or 'all' (queries both)")] = "all",
max_genes: Annotated[int, Field(ge=10, le=200, description="Maximum number of genes to return")] = 50,
) -> str:
"""Query disease-associated genes from real databases (GWAS Catalog, OpenTargets).
This tool queries live databases for genes associated with diseases or traits:
- **OpenTargets**: Comprehensive drug target and disease association database
- **GWAS Catalog**: Curated GWAS hits from published studies
Examples:
- query_disease_genes({"disease": "Alzheimer disease"})
- query_disease_genes({"disease": "schizophrenia", "source": "opentargets"})
- query_disease_genes({"disease": "cognitive function", "source": "gwas"})
- query_disease_genes({"disease": "prefrontal cortex", "source": "all"})
Common disease/trait queries for brain:
- "Alzheimer disease", "Parkinson disease", "schizophrenia"
- "bipolar disorder", "major depressive disorder"
- "cognitive function", "intelligence", "memory"
- "brain volume", "cortical thickness"
Returns genes ranked by association strength with the disease/trait.
"""
results = [f"Querying disease-associated genes for: '{disease}'\n"]
all_genes = set()
gene_sources = {}
# Query OpenTargets
if source.lower() in ["opentargets", "all"]:
results.append("=" * 60)
results.append("OpenTargets Database")
results.append("=" * 60)
ot_result = _query_opentargets(disease, max_genes)
if "error" in ot_result:
results.append(f" Error: {ot_result['error']}")
else:
results.append(f" Disease matched: {ot_result.get('disease_name', 'N/A')}")
results.append(f" Disease ID: {ot_result.get('disease_id', 'N/A')}")
if ot_result.get("genes"):
genes = ot_result["genes"]
results.append(f" Genes found: {len(genes)}")
results.append(f" Top genes: {', '.join(genes[:20])}")
if len(genes) > 20:
results.append(f" ... and {len(genes) - 20} more")
for g in genes:
all_genes.add(g)
gene_sources[g] = gene_sources.get(g, []) + ["OpenTargets"]
# Query GWAS Catalog
if source.lower() in ["gwas", "all"]:
results.append("\n" + "=" * 60)
results.append("GWAS Catalog (EBI)")
results.append("=" * 60)
gwas_result = _query_gwas_catalog(disease, max_genes)
if "error" in gwas_result:
results.append(f" Error: {gwas_result['error']}")
if gwas_result.get("genes"):
genes = gwas_result["genes"]
results.append(f" Genes found: {len(genes)}")
results.append(f" Top genes: {', '.join(genes[:20])}")
if len(genes) > 20:
results.append(f" ... and {len(genes) - 20} more")
for g in genes:
all_genes.add(g)
gene_sources[g] = gene_sources.get(g, []) + ["GWAS"]
# Summary
results.append("\n" + "=" * 60)
results.append("SUMMARY")
results.append("=" * 60)
results.append(f"Total unique genes: {len(all_genes)}")
# Genes found in multiple sources (higher confidence)
multi_source = [g for g, sources in gene_sources.items() if len(sources) > 1]
if multi_source:
results.append(f"\nHigh-confidence genes (found in multiple databases):")
results.append(f" {', '.join(multi_source)}")
results.append(f"\nAll genes: {', '.join(sorted(all_genes))}")
output = "\n".join(results)
# print(output) # Removed: duplicates output in agent's observation when tool is called via execute_python
return output
|