by davila7
设计了蛋白质但缺乏湿实验室资源?直接向 Adaptyv 的自动化云端实验室提交序列,进行结合测定、表达测试、热稳定性测量和酶活性分析。大约 21 天内获得实验结果。
1. 打开 Claude 聊天界面
2. 点击下方 "📋 复制" 按钮
3. 粘贴到 Claude 聊天框中并发送
4. 输入 "使用 adaptyv 技能" 开始使用
=== adaptyv 技能 === 作者: davila7 描述: 设计了蛋白质但缺乏湿实验室资源?直接向 Adaptyv 的自动化云端实验室提交序列,进行结合测定、表达测试、热稳定性测量和酶活性分析。大约 21 天内获得实验结果。 使用方法: 1. 调用技能: "使用 adaptyv 技能" 2. 提供相关信息: 根据技能要求提供必要参数 3. 查看结果: 技能会返回处理结果 示例: "使用 adaptyv 技能,帮我分析一下这段代码"
这种方法适用于所有 Claude 用户,不需要安装额外工具。
research
safe
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or web interface and receive experimental results in approximately 21 days.
Adaptyv requires API authentication. Set up your credentials:
export ADAPTYV_API_KEY="your_api_key_here"
Or create a .env file:
ADAPTYV_API_KEY=your_api_key_here
Install the required package using uv:
uv pip install requests python-dotenv
Submit protein sequences for testing:
import os
import requests
from dotenv import load_dotenv
load_dotenv()
api_key = os.getenv("ADAPTYV_API_KEY")
base_url = "https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws"
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
# Submit experiment
response = requests.post(
f"{base_url}/experiments",
headers=headers,
json={
"sequences": ">protein1\nMKVLWALLGLLGAA...",
"experiment_type": "binding",
"webhook_url": "https://your-webhook.com/callback"
}
)
experiment_id = response.json()["experiment_id"]
Adaptyv supports multiple assay types:
See reference/experiments.md for detailed information on each experiment type and workflows.
Before submitting sequences, optimize them for better expression and stability:
Common issues to address:
Recommended tools:
See reference/protein_optimization.md for detailed optimization workflows and tool usage.
For complete API documentation including all endpoints, request/response formats, and authentication details, see reference/api_reference.md.
For concrete code examples covering common use cases (experiment submission, status tracking, result retrieval, batch processing), see reference/examples.md.
View Count
0
Download Count
0
Favorite Count
0
Quality Score
70