GeoPandas
GeoPandas extends pandas to enable spatial operations on geometric types。 It combines capabilities of pandas 、 shapely ,…
维护者 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。
原始来源
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/benchling-integration
技能摘要
原始文档
This skill should be used when:
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:
For detailed authentication information including OIDC and security best practices, refer to references/authentication.md.
相关技能
GeoPandas extends pandas to enable spatial operations on geometric types。 It combines capabilities of pandas 、 shapely ,…
HypoGeniC:Hypogenic provides automated hypothesis generation 、 testing ,使用 large language models to accelerate scientifi…
ontology-mapper:映射 材料科学 terms,crystal structures,、 sample descriptions to ontology classes 、 properties。 支持 any ontology…
SimPy是一个process-based discrete-event 模拟 框架 based on standard Python。 Use SimPy to model systems where entities (customer…