Education
用 OD260/230 比值判断核酸样品的盐与有机溶剂污染——这是 260/280 检不出污染时的重要补充:纯核酸该比值为 2.0–2.2,低于 2.0 提示胍(TRIzol/柱试剂盒)、酚、碳水化合物、EDTA、高盐或 β-巯基乙醇残留;2.2–2.3 通常为可接受的缓冲液效应;高于 2.3 提示水/缓冲液假象需复测。可选填 A280 同时给出 OD260/280 交叉核对(DNA ~1.8、RNA ~2.0),一次读数覆盖两个纯度维度。读数低于 ~0.05 时比值不可靠。来源:Thermo Fisher T042、Sambrook & Russell、Manchester 1995。仅供教学与实验规划。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/od260-230-ratio' \
-H 'Content-Type: application/json' \
-d '{"nucleicAcidType":"DNA","a260":0.5,"a230":0.25,"a280":0.278,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/od260-230-ratio| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| nucleicAcidType | select | 是 | 260/230 expectations are identical for DNA and RNA; the type only tunes the optional A260/280 cross-check. |
| a260 | number | 是 | Absorbance at 260 nm (nucleic acid peak), same diluted sample as the A230 reading. |
| a230 | number | 是 | Absorbance at 230 nm (guanidine/phenol/salt peak) of the same diluted sample. |
| a280 | number | 否 | Absorbance at 280 nm; enter 0 to skip the A260/280 cross-check. |
| decimalPlaces | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-od260-230-ratio": {
"name": "od260-230-ratio",
"description": "用 OD260/230 比值判断核酸样品的盐与有机溶剂污染——这是 260/280 检不出污染时的重要补充:纯核酸该比值为 2.0–2.2,低于 2.0 提示胍(TRIzol/柱试剂盒)、酚、碳水化合物、EDTA、高盐或 β-巯基乙醇残留;2.2–2.3 通常为可接受的缓冲液效应;高于 2.3 提示水/缓冲液假象需复测。可选填 A280 同时给出 OD260/280 交叉核对(DNA ~1.8、RNA ~2.0),一次读数覆盖两个纯度维度。读数低于 ~0.05 时比值不可靠。来源:Thermo Fisher T042、Sambrook & Russell、Manchester 1995。仅供教学与实验规划。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=od260-230-ratio",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}连接到 SSE 端点后,列出已开放的工具:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}通过工具 id 调用,参数由其参数表构建:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "od260-230-ratio",
"arguments": {
"nucleicAcidType": "DNA",
"a260": 0.5,
"a230": 0.25,
"a280": 0.278,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}