Education
将 DNA 质量浓度换算为摩尔浓度:nM = µg/mL × 10⁶ ÷ (每碱基对质量 × bp)。平均质量按 NEB 惯例:双链 DNA 650 Da/bp、单链 DNA 330 Da/nt(Promega 用 660,同理)。注意常见陷阱:分母若用 10⁻³ 得到的是 µM 而非 nM(差 1000 倍)。1 µg/mL = 1 ng/µL 两种单位通用;输入体积即可得总 pmol 与每 µL 分子数(衔接 dna-copy-number 工具)。来源:NEB NEBioCalculator、Promega BioMath、Avogadro 常数 6.022×10²³。仅供教学与实验规划。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/molar-dna-concentration' \
-H 'Content-Type: application/json' \
-d '{"concentration":50,"dnaType":"dsDNA","lengthBp":1000,"sampleVolumeUl":100,"decimalPlaces":3}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/molar-dna-concentration| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| concentration | number | 是 | Mass concentration of the DNA sample. 1 µg/mL is numerically identical to 1 ng/µL. |
| dnaType | select | 是 | dsDNA averages 650 Da/bp; ssDNA averages 330 Da/nt (NEB convention). |
| lengthBp | number | 是 | Full length of the DNA molecule in base pairs (nt for ssDNA). |
| sampleVolumeUl | number | 否 | Volume of the sample in µL; enter 0 to skip the total-pmol calculation. |
| decimalPlaces | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-molar-dna-concentration": {
"name": "molar-dna-concentration",
"description": "将 DNA 质量浓度换算为摩尔浓度:nM = µg/mL × 10⁶ ÷ (每碱基对质量 × bp)。平均质量按 NEB 惯例:双链 DNA 650 Da/bp、单链 DNA 330 Da/nt(Promega 用 660,同理)。注意常见陷阱:分母若用 10⁻³ 得到的是 µM 而非 nM(差 1000 倍)。1 µg/mL = 1 ng/µL 两种单位通用;输入体积即可得总 pmol 与每 µL 分子数(衔接 dna-copy-number 工具)。来源:NEB NEBioCalculator、Promega BioMath、Avogadro 常数 6.022×10²³。仅供教学与实验规划。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=molar-dna-concentration",
"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": "molar-dna-concentration",
"arguments": {
"concentration": 50,
"dnaType": "dsDNA",
"lengthBp": 1000,
"sampleVolumeUl": 100,
"decimalPlaces": 3
}
}
}有问题或反馈?请联系 [email protected]
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}