drugbank-database by davila7/claude-code-templates
npx skills add https://github.com/davila7/claude-code-templates --skill drugbank-databaseDrugBank 是一个全面的生物信息学和化学信息学数据库,包含药物和药物靶点的详细信息。此技能支持以编程方式访问 DrugBank 数据,包括约 9,591 个药物条目(2,037 个 FDA 批准的小分子药物、241 个生物技术药物、96 个营养品和 6,000 多个实验性化合物),每个条目包含 200 多个数据字段。
使用 Python 通过正确的身份验证下载和访问 DrugBank 数据。此技能提供以下指导:
drugbank-downloader 包使用时机:设置 DrugBank 访问、下载数据库更新、初始项目配置。
参考:有关详细的身份验证、下载流程、API 访问、缓存策略和故障排除,请参阅 references/data-access.md。
从数据库中提取全面的药物信息,包括标识符、化学性质、药理学、临床数据以及与其他外部数据库的交叉引用。
查询能力:
使用时机:检索特定药物信息、构建药物数据库、药理学研究、文献综述、药物分析。
:有关 XML 导航、查询函数、数据提取方法和性能优化,请参阅 。
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
references/drug-queries.md分析药物-药物相互作用(DDI),包括作用机制、临床意义和相互作用网络,用于药物警戒和临床决策支持。
分析能力:
使用时机:多药治疗安全性分析、临床决策支持、药物相互作用预测、药物警戒研究、识别禁忌症。
参考:有关相互作用提取、分类方法、网络分析和临床应用,请参阅 references/interactions.md。
访问有关药物-蛋白质相互作用的详细信息,包括靶点、酶、转运蛋白、载体和生物通路。
靶点分析能力:
使用时机:作用机制研究、药物重新利用研究、靶点识别、通路分析、预测脱靶效应、理解药物代谢。
参考:有关靶点提取、通路分析、重新利用策略、CYP450 分析和转运蛋白分析,请参阅 references/targets-pathways.md。
执行基于结构的分析,包括分子相似性搜索、性质计算、子结构搜索和 ADMET 预测。
化学分析能力:
使用时机:构效关系(SAR)研究、药物相似性搜索、QSAR 建模、药物相似性评估、ADMET 预测、化学空间探索。
参考:有关结构提取、相似性计算、指纹生成、ADMET 预测和化学空间分析,请参阅 references/chemical-analysis.md。
data-access.md 下载并访问最新的 DrugBank 数据drug-queries.md 构建可搜索的药物数据库chemical-analysis.md 查找类似化合物targets-pathways.md 识别共同靶点interactions.md 检查候选组合的安全性drug-queries.md 查找患者用药interactions.md 检查所有成对相互作用interactions.md 对相互作用严重程度进行分类interactions.md 计算总体风险评分targets-pathways.md 理解相互作用机制targets-pathways.md 查找具有共同靶点的药物chemical-analysis.md 查找结构相似的药物drug-queries.md 提取适应症和药理学数据interactions.md 评估潜在的联合疗法drug-queries.md 提取感兴趣的药物targets-pathways.md 识别所有蛋白质相互作用targets-pathways.md 映射到生物通路chemical-analysis.md 预测 ADMET 性质interactions.md 识别潜在的禁忌症uv pip install drugbank-downloader # 核心访问
uv pip install bioversions # 最新版本检测
uv pip install lxml # XML 解析优化
uv pip install pandas # 数据操作
uv pip install rdkit # 化学信息学(用于相似性)
uv pip install networkx # 网络分析(用于相互作用)
uv pip install scikit-learn # 机器学习/聚类(用于化学空间)
references/data-access.md 中的文档配置凭证为进行可重复的研究,请始终指定 DrugBank 版本:
from drugbank_downloader import download_drugbank
path = download_drugbank(version='5.1.10') # 指定确切版本
在出版物和分析脚本中记录所使用的版本。
所有详细的实施指南都组织在模块化的参考文件中:
根据您的具体分析需求加载这些参考文件。
每周安装量
130
代码仓库
GitHub 星标数
22.6K
首次出现
2026年1月21日
安全审计
安装于
claude-code107
opencode100
gemini-cli94
cursor93
antigravity88
codex83
DrugBank is a comprehensive bioinformatics and cheminformatics database containing detailed information on drugs and drug targets. This skill enables programmatic access to DrugBank data including ~9,591 drug entries (2,037 FDA-approved small molecules, 241 biotech drugs, 96 nutraceuticals, and 6,000+ experimental compounds) with 200+ data fields per entry.
Download and access DrugBank data using Python with proper authentication. The skill provides guidance on:
drugbank-downloader packageWhen to use : Setting up DrugBank access, downloading database updates, initial project configuration.
Reference : See references/data-access.md for detailed authentication, download procedures, API access, caching strategies, and troubleshooting.
Extract comprehensive drug information from the database including identifiers, chemical properties, pharmacology, clinical data, and cross-references to external databases.
Query capabilities :
When to use : Retrieving specific drug information, building drug databases, pharmacology research, literature review, drug profiling.
Reference : See references/drug-queries.md for XML navigation, query functions, data extraction methods, and performance optimization.
Analyze drug-drug interactions (DDIs) including mechanism, clinical significance, and interaction networks for pharmacovigilance and clinical decision support.
Analysis capabilities :
When to use : Polypharmacy safety analysis, clinical decision support, drug interaction prediction, pharmacovigilance research, identifying contraindications.
Reference : See references/interactions.md for interaction extraction, classification methods, network analysis, and clinical applications.
Access detailed information about drug-protein interactions including targets, enzymes, transporters, carriers, and biological pathways.
Target analysis capabilities :
When to use : Mechanism of action studies, drug repurposing research, target identification, pathway analysis, predicting off-target effects, understanding drug metabolism.
Reference : See references/targets-pathways.md for target extraction, pathway analysis, repurposing strategies, CYP450 profiling, and transporter analysis.
Perform structure-based analysis including molecular similarity searches, property calculations, substructure searches, and ADMET predictions.
Chemical analysis capabilities :
When to use : Structure-activity relationship (SAR) studies, drug similarity searches, QSAR modeling, drug-likeness assessment, ADMET prediction, chemical space exploration.
Reference : See references/chemical-analysis.md for structure extraction, similarity calculations, fingerprint generation, ADMET predictions, and chemical space analysis.
data-access.md to download and access latest DrugBank datadrug-queries.md to build searchable drug databasechemical-analysis.md to find similar compoundstargets-pathways.md to identify shared targetsinteractions.md to check safety of candidate combinationsdrug-queries.md to look up patient medicationsinteractions.md to check all pairwise interactionsinteractions.md to classify interaction severityinteractions.md to calculate overall risk scoretargets-pathways.md to understand interaction mechanismstargets-pathways.md to find drugs with shared targetschemical-analysis.md to find structurally similar drugsdrug-queries.md to extract indication and pharmacology datainteractions.md to assess potential combination therapiesdrug-queries.md to extract drug of interesttargets-pathways.md to identify all protein interactionstargets-pathways.md to map to biological pathwayschemical-analysis.md to predict ADMET propertiesinteractions.md to identify potential contraindicationsuv pip install drugbank-downloader # Core access
uv pip install bioversions # Latest version detection
uv pip install lxml # XML parsing optimization
uv pip install pandas # Data manipulation
uv pip install rdkit # Chemical informatics (for similarity)
uv pip install networkx # Network analysis (for interactions)
uv pip install scikit-learn # ML/clustering (for chemical space)
references/data-access.mdAlways specify the DrugBank version for reproducible research:
from drugbank_downloader import download_drugbank
path = download_drugbank(version='5.1.10') # Specify exact version
Document the version used in publications and analysis scripts.
All detailed implementation guidance is organized in modular reference files:
Load these references as needed based on your specific analysis requirements.
Weekly Installs
130
Repository
GitHub Stars
22.6K
First Seen
Jan 21, 2026
Security Audits
Gen Agent Trust HubWarnSocketPassSnykPass
Installed on
claude-code107
opencode100
gemini-cli94
cursor93
antigravity88
codex83
免费AI数据抓取智能体:自动化收集、丰富与存储网站/API数据
1,100 周安装