File size: 30,368 Bytes
eeabcff | 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 | # -*- conding: utf-8 -*-
# @Time : 2025/12/22 18:48
# @Author : psi
# -*- coding: utf-8 -*-
# @Time : 2025/12/22
# @Author : psi
import json
import time
import gradio as gr
import pandas as pd
from rdkit import Chem
from rdkit.Chem import Draw
import os
from PIL import Image
import base64
from smiles_to_pubchem_2d_image import smiles_to_pubchem_2d_image
flag_t = True
if flag_t:
from infer_predict111 import infer_online as pos_infer_online
# from infer_predict222 import infer_online as neg_infer_online
# from a_predict111 import pred as pos_pred
# from a_predict222 import pred as neg_pred
base_image_path = "/Users/xiaojie/Documents/lunwen/代码/data/"
logo_image_local_path = "logo_1.png"
# =========================
# 系统 SMILES 库(示例)
# =========================
SYSTEM_SMILES_DB = [
'Br.C=CC1CN2CCC1CC2C(O)c1ccnc2ccc(OC)cc12',
"CCOC(=O)c1ccc(CCN)cc1",
"CN1CCN(CC1)C2=CC=CC=C2",
"COC1=CC=CC=C1C(=O)O",
"CCN(CC)C(=O)C1=CC=CC=C1",
"CCC1=CC=CC=C1O",
'Br.C=CC1CN2CCC1CC2C(O)c1ccnc2ccc(OC)cc12',
]
def infer_ms(msp_file, ion_mode, parent_mass, parent_mass_bn=50):
if ion_mode == "pos":
return pos_infer_online.infer(msp_file, parent_mass, parent_mass_bn)
else:
return neg_infer_online.infer(msp_file, parent_mass, parent_mass_bn)
# =========================
# Mock Cross-modal Retrieval
# =========================
def cross_modal_retrieval(parent_mass, ion_mode, msp_file, user_smiles, parent_mass_bn=50):
"""
真实版本中替换为:
- MS2 embedding
- SMILES embedding
- cosine similarity top-k
"""
if not flag_t:
candidates = SYSTEM_SMILES_DB + user_smiles
return candidates[:8] # 故意 <10,用于测试留空逻辑
res_pred_name1 = infer_ms(msp_file, ion_mode, parent_mass, parent_mass_bn)
if len(user_smiles) == 0:
return res_pred_name1
data = []
for x in user_smiles:
data.append({'ms': msp_file, "smiles": x})
if ion_mode == "pos":
# results = pos_pred.predict(data)
results = pos_infer_online.pred_model.predict_1(data)
else:
# results = neg_pred.predict(data)
results = neg_infer_online.pred_model.predict_1(data)
if results is None:
return res_pred_name1
res_pred_name1 = res_pred_name1 + results
res_pred_name1 = sorted(res_pred_name1, key=lambda x: x[1], reverse=True)
return res_pred_name1[:10]
# =========================
# SMILES → Image
# =========================
def smiles_to_image1(smiles, size=(300, 300)):
mol = Chem.MolFromSmiles(smiles)
if mol is None:
return None
return Draw.MolToImage(mol, size=size)
def smiles_to_image(smiles, size=(300, 300)):
"""
通过读取本地文件并 Resize 后返回 PIL 对象,避免 Gradio 路径权限报错
"""
# 你的图片基础路径
# base_image_path = "/Users/xiaojie/Documents/lunwen/代码/data/"
# 构造图片完整路径(这里假设文件名就是 smiles + .png)
# 如果你的文件名逻辑不同,请根据实际情况修改
img_path = os.path.join(base_image_path, f"{smiles}.png")
# img_path = '/Users/xiaojie/Documents/lunwen/代码/data/Br.C=CC1CN2CCC1CC2C(O)c1ccnc2ccc(OC)cc12.png'
try:
if os.path.exists(img_path):
# 打开图片文件
img = Image.open(img_path)
# 强制调整为 300x300 大小
img = img.resize(size, Image.Resampling.LANCZOS)
return img
else:
print(f"警告: 文件未找到 {img_path}")
# time.sleep(1)
img = smiles_to_image1(smiles)
return img
except Exception as e:
print(f"处理图片时出错: {e}")
return None
# =========================
# 加载用户 SMILES
# =========================
def load_user_smiles(file):
if file is None:
return []
if file.name.endswith(".txt"):
with open(file.name, "r") as f:
smiles = [l.strip() for l in f if l.strip()]
elif file.name.endswith(".csv"):
df = pd.read_csv(file.name)
if "smiles" not in df.columns:
raise ValueError("CSV 中必须包含 smiles 列")
smiles = df["smiles"].dropna().tolist()
else:
smiles = []
return [s for s in smiles if Chem.MolFromSmiles(s)]
def parse_msp(file):
if file.name.endswith(".msp"):
with open(file.name, "r", encoding='utf-8') as f:
lines = f.readlines()
start_index = 0
for i, line in enumerate(lines):
if line.startswith("Num Peaks:"):
start_index = i + 1
break
# 3. 提取数据行并转换为二维数组
peaks_array = []
for line in lines[start_index:]:
# split() 会自动处理空格和制表符 (\t)
parts = line.replace("\n", "").split()
if len(parts) == 2:
peaks_array.append([float(parts[0]), float(parts[1])])
return peaks_array
elif file.name.endswith(".mgf"):
with open(file.name, "r", encoding='utf-8') as f:
lines = f.readlines()
peaks_array = []
# 2. 遍历每一行进行判断
for line in lines:
# 排除掉不包含数值的标签行
if not line or any(tag in line for tag in ["BEGIN", "END", "=", "NAME"]):
continue
# 尝试将行内容切分为两部分
parts = line.replace("\n", "").split()
# 如果分割后有两个元素,且第一个元素是数字,则加入数组
if len(parts) == 2:
try:
mz = float(parts[0])
intensity = float(parts[1])
peaks_array.append([mz, intensity])
except ValueError:
# 如果转换数字失败(比如标题行),则跳过
continue
return peaks_array
elif file.name.endswith(".json"):
with open(file.name, "r", encoding='utf-8') as f:
line = json.load(f)
peaks_array = None
if 'ms' in line:
peaks_array = line['ms']
elif 'Ms' in line:
peaks_array = line['Ms']
elif 'MS' in line:
peaks_array = line['MS']
elif 'mS' in line:
peaks_array = line['mS']
return peaks_array
elif file.name.endswith(".mzXML"):
with open(file.name, "r", encoding='utf-8') as f:
lines = f.readlines()
return None
elif file.name.endswith(".mzML"):
with open(file.name, "r", encoding='utf-8') as f:
lines = f.readlines()
return None
else:
return None
# =========================
# 第一类:业务逻辑(只算结果)
# =========================
def run_retrieval(msp_file, ion_mode, parent_mass, user_smiles_file, parent_mass_bn=50):
if msp_file is None:
return [], None
print("msp_file ...", msp_file)
print("ion_mode ...", ion_mode)
print("parent_mass ...", parent_mass)
print("user_smiles_file ...", user_smiles_file)
user_smiles = load_user_smiles(user_smiles_file)
msp_file = parse_msp(msp_file)
print("msp_file ...", msp_file)
if msp_file is None:
return [], None
print("user_smiles ...", user_smiles)
smiles_list = cross_modal_retrieval(parent_mass, ion_mode, msp_file, user_smiles, parent_mass_bn)
print("smiles_list ...", smiles_list)
# scores_list = []
if isinstance(smiles_list[0], list):
scores_list = [x[1] for x in smiles_list]
smiles_list = [x[0] for x in smiles_list]
else:
scores_list = [1.0] * len(smiles_list)
results = []
rows = []
for i, smi in enumerate(smiles_list):
if i >= 10:
break
img = smiles_to_image(smi)
results.append({
"rank": i + 1,
"img": img,
"smiles": smi,
"score": scores_list[i]
})
rows.append({
"rank": i + 1,
"parent_ion_mass": parent_mass,
"ion_mode": ion_mode,
"smiles": smi,
"score": scores_list[i]
})
print("len results ...")
print(len(results))
csv_path = "cross_modal_results.csv"
pd.DataFrame(rows).to_csv(csv_path, index=False)
return results, csv_path
# =========================
# 第一类:业务逻辑(只算结果)
# =========================
def run_retrieval_2(msp_file, ion_mode, parent_mass, user_smiles_file, compound_num_min, compound_name_max, pr=10, parent_mass_bn=50):
if msp_file is None:
return [], None
print("msp_file ...", msp_file)
print("ion_mode ...", ion_mode)
print("parent_mass ...", parent_mass)
print("user_smiles_file ...", user_smiles_file)
user_smiles = load_user_smiles(user_smiles_file)
msp_file_s1, msp_file_s2 = saixuan_example(msp_file, compound_num_min, compound_name_max, pr)
if msp_file_s1 is None or len(msp_file_s1) == 0:
return [], None
print("msp_file_s ...", len(msp_file_s1))
print("user_smiles ...", user_smiles)
results = []
rows = []
for i11, msp_mass_file in enumerate(msp_file_s1):
msp_file = msp_mass_file['ms']
parent_mass = msp_mass_file['mass'][0]
smiles_list = cross_modal_retrieval(parent_mass, ion_mode, msp_file, user_smiles, parent_mass_bn)
print("smiles_list ...", smiles_list)
# scores_list = []
if isinstance(smiles_list[0], list):
scores_list = [x[1] for x in smiles_list]
smiles_list = [x[0] for x in smiles_list]
else:
scores_list = [1.0] * len(smiles_list)
for i, smi in enumerate(smiles_list):
if i >= 10:
break
if i11 == 0:
img = smiles_to_image(smi)
results.append({
"rank": i + 1,
"img": img,
"smiles": smi,
"score": scores_list[i]
})
rows.append({
"id": i11,
"rank": i + 1,
"parent_ion_mass": parent_mass,
"ion_mode": ion_mode,
"smiles": smi,
"score": scores_list[i]
})
print("len results ...")
print(len(results))
import datetime
timestamp = datetime.datetime.now().strftime("%Y%m%d_%H%M%S")
csv_path = f"cross_modal_results_{timestamp}.csv"
pd.DataFrame(rows).to_csv(csv_path, index=False)
return results[:10], csv_path
# =========================
# 第二类:UI 适配(固定铺 10 个)
# =========================
def fill_top10(results, csv_path):
images = []
smiles_texts = []
score_texts = []
print("results ...")
print(results)
for i in range(10):
if i < len(results):
images.append(results[i]["img"])
smiles_texts.append(results[i]["smiles"])
score_texts.append(str(results[i]['score']))
else:
images.append(None)
smiles_texts.append("")
score_texts.append("")
return images + smiles_texts + score_texts + [csv_path]
def unified_run_retrieval(msp_file, ion_mode, parent_mass, user_smiles_file, compound_mode, compound_num_min, compound_name_max, pr=10, parent_mass_bn=50):
# 1. 执行原有的 retrieval 逻辑
if compound_mode == "单化合物":
results, csv_path = run_retrieval(msp_file, ion_mode, parent_mass, user_smiles_file, parent_mass_bn)
else:
results, csv_path = run_retrieval_2(msp_file, ion_mode, parent_mass, user_smiles_file, compound_num_min, compound_name_max, pr, parent_mass_bn)
# 2. 调用原有的 fill_top10 逻辑获取 UI 输出列表
# 假设 fill_top10 返回的是 image_outputs + smiles_outputs + [csv_file] 对应的值
ui_outputs = fill_top10(results, csv_path)
return ui_outputs
# ========================= # 示例填充 # =========================
def load_example():
time.sleep(1)
return "/Users/xiaojie/Documents/lunwen/代码/data/29579-06-0.mgf", "pos", 336.1735
def parse_ms_data_simple(lines):
results = []
current_entry = None
# 按行分割文本
# lines = raw_text.strip().split('\n')
for line in lines:
line = line.strip()
if not line:
continue
# 识别样本开始
if line == "BEGIN IONS":
current_entry = {"ms": [], "mass": []}
continue
# 识别样本结束
if line == "END IONS":
if current_entry is not None:
results.append(current_entry)
current_entry = None
continue
# 处于样本块内部时
if current_entry is not None:
if line.startswith("PEPMASS="):
# 提取 PEPMASS= 之后的部分并按空格切分
mass_values = line.split('=')[1].split()
current_entry["mass"] = [float(v) for v in mass_values]
elif "=" in line:
# 跳过其他元数据行,如 TITLE, CHARGE, RTINSECONDS 等
continue
else:
# 处理碎片数据行 (m/z intensity)
parts = line.split()
if len(parts) >= 2:
try:
mz = float(parts[0])
intensity = float(parts[1])
current_entry["ms"].append([mz, intensity])
except ValueError:
# 容错处理:如果行首不是数字则跳过
continue
return results
def parse_ms_data_msp(lines):
results = []
# lines = text.splitlines()
current_entry = None
capture_ms = False
peaks_to_collect = 0
for line in lines:
line = line.strip()
if not line:
continue
# 遇到新条目开始
if line.startswith("NAME:"):
if current_entry and current_entry["ms"]:
results.append(current_entry)
current_entry = {"mass": None, "ms": []}
capture_ms = False
continue
# 解析 PRECURSORMZ
if line.startswith("PRECURSORMZ:"):
mass_values = line.split(":", 1)[1].strip().split()
current_entry["mass"] = [float(v) for v in mass_values]
# 检测 Num Peaks,开始捕获 MS 数据
elif line.startswith("Num Peaks:"):
val = line.split(":", 1)[1].strip()
peaks_to_collect = int(val)
capture_ms = True
# 捕获峰数据
elif capture_ms and peaks_to_collect > 0:
parts = line.split()
if len(parts) >= 2:
mz = float(parts[0])
intensity = float(parts[1])
current_entry["ms"].append([mz, intensity])
peaks_to_collect -= 1
if peaks_to_collect == 0:
capture_ms = False
# 添加最后一个条目
if current_entry and current_entry["ms"]:
results.append(current_entry)
return results
def saixuan_example(file, min_val, max_val, pr=10):
if file.name.endswith(".msp"):
try:
with open(file.name, "r", encoding='utf-8') as f:
lines = f.readlines()
res2 = parse_ms_data_msp(lines)
res = []
for x in res2:
ms = []
for c in x['ms']:
if float(c[1]) <= pr:
continue
ms.append(c)
if len(ms) > 0:
res.append({
"ms": ms,
"mass": x["mass"]
})
res1 = []
for x in res:
pep_mass = x["mass"]
if len(pep_mass) == 2:
if float(pep_mass[1]) >= float(min_val) and float(pep_mass[1]) <= float(max_val):
res1.append(x)
else:
res1.append(x)
return res1, res
except Exception as e:
print(e)
return None, None
elif file.name.endswith(".mgf"):
try:
with open(file.name, "r", encoding='utf-8') as f:
lines = f.readlines()
res2 = parse_ms_data_simple(lines)
res = []
for x in res2:
ms = []
for c in x['ms']:
if float(c[1]) <= pr:
continue
ms.append(c)
if len(ms) > 0:
res.append({
"ms": ms,
"mass": x["mass"]
})
res1 = []
for x in res:
pep_mass = x["mass"]
if float(pep_mass[1]) >= float(min_val) and float(pep_mass[1]) <= float(max_val):
res1.append(x)
return res1, res
except Exception as e:
print(e)
return None, None
elif file.name.endswith(".json"):
try:
with open(file.name, "r", encoding='utf-8') as f:
lines = json.load(f)
res2 = []
for line in lines:
d = {"ms": None, "mass": None}
if 'ms' in line:
d['ms'] = line['ms']
elif 'Ms' in line:
d['ms'] = line['Ms']
elif 'MS' in line:
d['ms'] = line['MS']
elif 'mS' in line:
d['ms'] = line['mS']
if 'parent_mz' in line:
d['mass'] = [line['parent_mz']]
else:
d['mass'] = [0]
res2.append(d)
res = []
for x in res2:
ms = []
for c in x['ms']:
if float(c[1]) <= pr:
continue
ms.append(c)
if len(ms) > 0:
res.append({
"ms": ms,
"mass": x["mass"]
})
res1 = []
for x in res:
pep_mass = x["mass"]
if len(pep_mass) == 2:
if float(pep_mass[1]) >= float(min_val) and float(pep_mass[1]) <= float(max_val):
res1.append(x)
else:
res1.append(x)
return res1, res
except Exception as e:
print(e)
return None, None
else:
return None, None
# ---- 模拟文件解析逻辑 ----
def process_compounds(file, mode, min_val, max_val, pr=10):
if not file:
return "未上传文件", "未上传文件"
if mode == "单化合物":
return "1", "1"
# 这里放置你的解析逻辑,例如读取 msp 文件内容
# 假设我们通过某种逻辑得到了总数和筛选后的数量
# 以下为示例数值:
try:
# demo 逻辑:模拟从文件中读到了 50 个,经过响应值筛选剩下 10 个
res1, res2 = saixuan_example(file, min_val, max_val, pr=pr)
if res1 is not None and res2 is not None:
parsed_selected = len(res1)
parsed_total = len(res2)
return str(parsed_selected), str(parsed_total)
else:
return '0', '0'
except Exception as e:
return "解析错误", str(e)
# 1. 图片转 Base64 函数(解决路径显示不出的问题)
def get_base64_image(image_path):
try:
with open(image_path, "rb") as img_file:
return base64.b64encode(img_file.read()).decode('utf-8')
except Exception as e:
print(f"图片读取失败: {e}")
return ""
# CSS 样式:定义背景颜色、文字颜色和悬停效果
custom_css = """
#yellow_btn {
background-color: #FEBA02 !important; /* 黄色背景 */
color: black !important; /* 黑色文字,确保对比度 */
border: none;
}
#yellow_btn:hover {
background-color: #e6b800 !important; /* 鼠标悬停时稍微深一点的黄色 */
}
/* 新增:图片中的四种颜色按钮样式 */
/* 1. 深绿色 (#3D9F3C) */
#btn_green_dark {
background-color: #3D9F3C !important;
color: white !important;
border: none;
}
#btn_green_dark:hover {
background-color: #328532 !important; /* 悬停颜色稍深 */
}
/* 2. 浅绿色 (#9ED17B) */
#btn_green_light {
background-color: #9ED17B !important;
color: black !important;
border: none;
}
#btn_green_light:hover {
background-color: #89c065 !important;
}
/* 3. 中蓝色 (#367DB0) */
#btn_blue_medium {
background-color: #367DB0 !important;
color: white !important;
border: none;
}
#btn_blue_medium:hover {
background-color: #2b658f !important;
}
/* 4. 天蓝色 (#9DC7DD) */
#btn_blue_light {
background-color: #9DC7DD !important;
color: black !important;
border: none;
}
#btn_blue_light:hover {
background-color: #85b5cc !important;
}
"""
# =========================
# Gradio UI
# =========================
with gr.Blocks(title="MS² → SMILES Cross-Modal Retrieval", css=custom_css) as demo:
# gr.Markdown("## 🔬 MS² → SMILES Cross-Modal Retrieval")
# gr.Markdown(
# """
# <div style="text-align: center;">
# <h2 style="
# background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
# -webkit-background-clip: text;
# -webkit-text-fill-color: transparent;
# font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
# font-size: 2.2em;
# font-weight: 800;
# margin-bottom: 10px;
# ">
# 🔬 MS² → SMILES Cross-Modal Retrieval
# </h2>
# </div>
# """
# )
# gr.Markdown(
# """
# <div style="text-align: center;">
# <h2 style="
# color: #FF007A;
# text-shadow: 2px 2px 10px rgba(255, 0, 122, 0.3);
# font-family: 'Arial Black', sans-serif;
# letter-spacing: 1px;
# ">
# 🔬 MS² → SMILES Cross-Modal Retrieval
# </h2>
# <hr style="border: 1px solid #FF007A; width: 50%; margin: auto;">
# </div>
# """
# )
# gr.Markdown(
# """
# <div style="
# text-align: center;
# background-color: #f0f7ff;
# padding: 20px;
# border-radius: 15px;
# border-left: 10px solid #3b82f6;
# ">
# <h2 style="color: #1e40af; margin: 0; font-family: system-ui;">
# 🔬 MS² → SMILES Cross-Modal Retrieval
# </h2>
# <p style="color: #60a5fa; font-weight: bold; margin-top: 5px;">
# Mass Spectrometry to Chemical Structure
# </p>
# </div>
# """
# )
img_local_path = logo_image_local_path
img_base64 = get_base64_image(img_local_path)
# 2. 构造 HTML:图标左对齐,文字绝对居中
header_html = f"""
<div style="
display: flex;
align-items: center;
position: relative;
background: linear-gradient(100deg, #3D9F3C 0%, #9ED17B 30%, #367DB0 70%, #9DC7DD 100%);
padding: 0;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.15);
height: 100px;
overflow: hidden;
margin: 10px auto;
">
<div style="
height: 100%;
display: flex;
align-items: center;
z-index: 2;
/* 核心:通过遮罩实现右侧自然渐变消失 */
-webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
mask-image: linear-gradient(to right, black 70%, transparent 100%);
">
<img src="data:image/png;base64,{img_base64}"
style="
height: 100%;
width: auto;
object-fit: contain;
mix-blend-mode: multiply; /* 过滤掉图片自身的白底 */
">
</div>
<div style="
position: absolute;
left: 0;
right: 0;
text-align: center;
pointer-events: none;
">
<h2 style="
color: white;
margin: 0;
font-family: 'Segoe UI', system-ui, sans-serif;
font-size: 26px;
font-weight: 700;
text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
">
🔬 MS<sup style="font-size: 0.6em;">2</sup> → SMILES Cross-Modal Retrieval
</h2>
<p style="
color: rgba(255, 255, 255, 0.9);
margin: 4px 0 0 0;
font-size: 15px;
font-weight: 400;
letter-spacing: 0.5px;
">
Mass Spectrometry to Chemical Structure Discovery
</p>
</div>
</div>
"""
gr.HTML(header_html) # 注意:这里改用 gr.HTML 效果更稳定
# ---- 输入区 ----
msp_file = gr.File(label="上传 MS/MS 谱图 (.msp)", file_types=[".msp", ".mgf", ".json"])
with gr.Row():
ion_mode = gr.Radio(["pos", "neg"], label="离子模式", value="pos")
compound_mode = gr.Radio(["单化合物", "多化合物"], label="化合物情况", value="单化合物")
compound_num_min = gr.Number(label="响应值最小值", value=10000)
compound_name_max = gr.Number(label="响应值最大值", value=20000)
pr_min = gr.Number(label="二级碎片响应值过滤", value=10)
parent_mass = gr.Number(label="母离子质量", value=336.1735)
parent_mass_bn = gr.Number(label="母离子质量阈值", value=1000000)
with gr.Row():
# 新增一个“解析统计”按钮,或者直接用你的检索按钮
analyze_btn = gr.Button("统计化合物数量", variant="secondary", elem_id="btn_green_dark")
# ---- 结果显示区:设为不可手动编辑的 Textbox (interactive=False) ----
with gr.Row():
select_count = gr.Textbox(label="选择多少个", interactive=False, visible=False)
total_count = gr.Textbox(label="总共多少个", interactive=False, visible=False)
user_smiles_file = gr.File(
label="用户新增 SMILES 库 (txt / csv)",
file_types=[".txt", ".csv"]
)
# ===== 操作按钮 =====
with gr.Row():
example_btn = gr.Button("加载样例", elem_id="btn_blue_medium")
run_btn = gr.Button("Cross-modal Retrieval", variant="primary", elem_id="yellow_btn")
# ---- 结果区 ----
gr.Markdown("## 📊 Top-10 Retrieval Results")
image_outputs = []
smiles_outputs = []
scores_outputs = []
with gr.Row():
for i in range(5):
with gr.Column():
gr.Markdown(f"**Top-{i+1}**")
image_outputs.append(gr.Image(height=300, width=300))
smiles_outputs.append(
gr.Textbox(label="SMILES", interactive=False)
)
scores_outputs.append(
gr.Textbox(label="score", interactive=False)
)
with gr.Row():
for i in range(5, 10):
with gr.Column():
gr.Markdown(f"**Top-{i+1}**")
image_outputs.append(gr.Image(height=300, width=300))
smiles_outputs.append(
gr.Textbox(label="SMILES", interactive=False)
)
scores_outputs.append(
gr.Textbox(label="score", interactive=False)
)
# ===== 导出区 =====
with gr.Row():
csv_file = gr.File(label="结果 CSV")
# download_btn = gr.Button("下载 / 导出数据")
# 1. 控制文本框的显示/隐藏(可选,若想一直显示可去掉此段)
def toggle_boxes(mode):
return gr.update(visible=True), gr.update(visible=True)
compound_mode.change(toggle_boxes, inputs=compound_mode, outputs=[select_count, total_count])
# 2. 点击“统计”按钮时,解析文件并回填数据
analyze_btn.click(
fn=process_compounds,
inputs=[msp_file, compound_mode, compound_num_min, compound_name_max, pr_min],
outputs=[select_count, total_count]
)
# ===== 交互绑定 =====
example_btn.click(
fn=load_example,
outputs=[msp_file, ion_mode, parent_mass]
)
# ---- State ----
results_state = gr.State()
csv_state = gr.State()
# ---- 绑定 ----
# run_btn.click(
# fn=run_retrieval,
# inputs=[msp_file, ion_mode, parent_mass, user_smiles_file],
# outputs=[results_state, csv_state]
# )
#
# run_btn.click(
# fn=fill_top10,
# inputs=[results_state, csv_state],
# outputs=image_outputs + smiles_outputs + scores_outputs + [csv_file]
# )
# run_btn.click(
# fn=run_retrieval,
# inputs=[msp_file, ion_mode, parent_mass, user_smiles_file],
# outputs=[results_state, csv_state]
# ).then(
# fn=fill_top10,
# inputs=[results_state, csv_state],
# outputs=image_outputs + smiles_outputs + scores_outputs + [csv_file]
# )
run_btn.click(
fn=unified_run_retrieval,
inputs=[msp_file, ion_mode, parent_mass, user_smiles_file, compound_mode, compound_num_min, compound_name_max, pr_min, parent_mass_bn],
outputs=image_outputs + smiles_outputs + scores_outputs + [csv_file]
)
# download_btn.click(
# fn=lambda x: x,
# inputs=csv_file,
# outputs=csv_file
# )
if __name__ == "__main__":
demo.launch(server_name="0.0.0.0", server_port=7868, share=True)
# nohup python3 -u app.py > app_1.log 2>&1 &
# lsof -i :7865
|