Education
按理想指数扩增计算 PCR 产物量:n 个循环后拷贝数 = 模板数 × (1 + 效率)^n,效率 100% 即教科书上的 2^n 倍增(30 循环 ≈ 10.7 亿倍);真实 PCR 效率通常 70–100%,25 循环 90% 效率约损失百倍产量。输入扩增片段长度可换算产物质量 ng(每碱基对 660 Da,阿伏伽德罗常数 6.022×10²³)。附带现实修正:反应在约 10¹²–10¹³ 个产物分子处进入平台期(工具会标记超限结果),超过 35 个循环主要扩增非特异产物与引物二聚体。来源:Saiki 1988、Innis & Gelfand 1990、Lorenz 2012。仅供实验规划。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/pcr-cycle-number' \
-H 'Content-Type: application/json' \
-d '{"templateCopies":1000,"cycles":30,"efficiencyPercent":100,"ampliconLengthBp":500,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/pcr-cycle-number| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| templateCopies | number | 是 | Starting number of target molecules (see the companion copy-number tool). |
| cycles | number | 是 | Number of thermal cycles (most protocols: 25–35). |
| efficiencyPercent | number | 是 | Per-cycle amplification efficiency; 100% = perfect doubling, real PCR typically 70–100%. |
| ampliconLengthBp | number | 否 | Amplicon length in base pairs for the ng-yield conversion; enter 0 to skip. |
| decimalPlaces | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-pcr-cycle-number": {
"name": "pcr-cycle-number",
"description": "按理想指数扩增计算 PCR 产物量:n 个循环后拷贝数 = 模板数 × (1 + 效率)^n,效率 100% 即教科书上的 2^n 倍增(30 循环 ≈ 10.7 亿倍);真实 PCR 效率通常 70–100%,25 循环 90% 效率约损失百倍产量。输入扩增片段长度可换算产物质量 ng(每碱基对 660 Da,阿伏伽德罗常数 6.022×10²³)。附带现实修正:反应在约 10¹²–10¹³ 个产物分子处进入平台期(工具会标记超限结果),超过 35 个循环主要扩增非特异产物与引物二聚体。来源:Saiki 1988、Innis & Gelfand 1990、Lorenz 2012。仅供实验规划。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=pcr-cycle-number",
"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": "pcr-cycle-number",
"arguments": {
"templateCopies": 1000,
"cycles": 30,
"efficiencyPercent": 100,
"ampliconLengthBp": 500,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}