数据与复现地理信息与遥感K-Dense-AI/claude-scientific-skills数据与复现
BE

Benchling Integration

维护者 K-Dense Inc. · 最近更新 2026年4月1日

Benchling Integration:Benchling是一个cloud 平台 ,用于 life sciences R&D。 访问 registry entities (DNA,proteins),inventory,electronic lab notebooks,、 workflows programmatically ,通过 Python SDK 、 REST API。

Claude CodeOpenClawNanoClaw分析处理复现实验benchling-integrationlab-platformsintegrationlaboratory information management systems (lims) & r&d platforms

原始来源

K-Dense-AI/claude-scientific-skills

https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/benchling-integration

维护者
K-Dense Inc.
许可
Unknown
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • Benchling是一个cloud 平台 ,用于 life sciences R&D. Access registry entities (DNA,proteins),inventory,electronic lab notebooks,、 workflows programmatically ,通过 Python SDK 、 REST API。
  • uv pip install benchling-sdk。

原始文档

SKILL.md 摘录

When to Use This Skill

This skill should be used when:

  • Working with Benchling's Python SDK or REST API
  • Managing biological sequences (DNA, RNA, proteins) and registry entities
  • Automating inventory operations (samples, containers, locations, transfers)
  • Creating or querying electronic lab notebook entries
  • Building workflow automations or Benchling Apps
  • Syncing data between Benchling and external systems
  • Querying the Benchling Data Warehouse for analytics
  • Setting up event-driven integrations with AWS EventBridge

1. Authentication & Setup

Python SDK Installation:


## or with Poetry

poetry add benchling-sdk
python
from benchling_sdk.benchling import Benchling
from benchling_sdk.auth.api_key_auth import ApiKeyAuth

benchling = Benchling(
    url="https://your-tenant.benchling.com",
    auth_method=ApiKeyAuth("your_api_key")
)
python
from benchling_sdk.auth.client_credentials_oauth2 import ClientCredentialsOAuth2

auth_method = ClientCredentialsOAuth2(
    client_id="your_client_id",
    client_secret="your_client_secret"
)
benchling = Benchling(
    url="https://your-tenant.benchling.com",
    auth_method=auth_method
)

Key Points:

  • API keys are obtained from Profile Settings in Benchling
  • Store credentials securely (use environment variables or password managers)
  • All API requests require HTTPS
  • Authentication permissions mirror user permissions in the UI

For detailed authentication information including OIDC and security best practices, refer to references/authentication.md.

适用场景

  • Working ,支持 Benchling's Python SDK 或 REST API。
  • Managing biological sequences (DNA,RNA,proteins) 、 registry entities。
  • Automating inventory operations (samples,containers,locations,transfers)。
  • Creating 或 querying electronic lab notebook entries。

不适用场景

  • Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。

相关技能

相关技能

返回目录
GE
数据与复现地理信息与遥感

GeoPandas

GeoPandas extends pandas to enable spatial operations on geometric types。 It combines capabilities of pandas 、 shapely ,…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看
HY
数据与复现地理信息与遥感

HypoGeniC

HypoGeniC:Hypogenic provides automated hypothesis generation 、 testing ,使用 large language models to accelerate scientifi…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看
ON
数据与复现地理信息与遥感

ontology-mapper

ontology-mapper:映射 材料科学 terms,crystal structures,、 sample descriptions to ontology classes 、 properties。 支持 any ontology…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
SI
数据与复现地理信息与遥感

SimPy

SimPy是一个process-based discrete-event 模拟 框架 based on standard Python。 Use SimPy to model systems where entities (customer…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看