Open Drug Discovery Toolkit

简介: Open Drug Discovery Toolkit

ODDT介绍:


The Open Drug Discovery Toolkit was developed as a free and open source tool for both computer aided drug discovery (CADD) developers and researchers. ODDT reimplements many state-of-the-art methods, such as machine learning scoring functions (RF-Score and NNScore) and wraps other external software to ease the process of developing CADD pipelines. ODDT is an out-of-the-box solution designed to be easily customizable and extensible. Therefore, users are strongly encouraged to extend it and develop new methods. We here present three use cases for ODDT in common tasks in computer-aided drug discovery

硬件环境:

image.png

ODDT安装:

安装安装Anaconda(Python3.6)点击打开链接

<事先编译安装OpenBabel或者RDKit>点击打开链接

pip install oddt
或者
python -m pip install oddt

image.png

ODDT模块:

image.png

ODDT实例之分子过滤:

#!/usr/bin/python2.7
from oddt.virtualscreening import virtualscreening as vs
pipeline = vs(n_cpu=14)
pipeline.load_ligands('mol2', 'molecules.mol2')
# Filter ligands by weight and solubility
pipeline.apply_filter('150 < mol.molwt < 350')
pipeline.apply_filter('0 < mol.logp < 5')
pipeline.write('mol2', 'filter_out.mol2')

image.png

参考:

点击打开链接ODDT-GitHub

点击打开链接oddt-docs


目录
相关文章
|
安全 Unix Shell
读书笔记系列 - Operating Systems: Three Easy Pieces - Virtualization - Chapter 5: Process API
读书笔记系列 - Operating Systems: Three Easy Pieces - Virtualization - Chapter 5: Process API
95 0
《Alibaba_Cloud_Whitepaper_-_Improving_your_Organizations_Data_Governance_Scorecard.pdf》电子版地址
Alibaba_Cloud_Whitepaper_-_Improving_your_Organizations_Data_Governance_Scorecard.pdf
62 0
《Alibaba_Cloud_Whitepaper_-_Improving_your_Organizations_Data_Governance_Scorecard.pdf》电子版地址
|
分布式计算 关系型数据库 数据库
New Product Launch: Alibaba Cloud Data Integration
Support online real-time & offline data exchange between all data sources, networks and locations with Alibaba Cloud Data Integration.
14604 0
New Product Launch: Alibaba Cloud Data Integration
|
Java Maven Android开发
《Cloud Toolkit User Guide》
Alibaba Cloud Toolkit,面向 IDE(如 Eclipse 或 IntelliJ IDEA )的插件,帮助开发者更高效的开发、测试、诊断并部署适合云端运行的应用
38372 1
|
SDN
The Alibaba Cloud Appearance at Open Network Summit 2018
Alibaba Cloud attended Open Network Summit North America in Los Angeles during Mar 26th to 29th.
1683 0
The Alibaba Cloud Appearance at Open Network Summit 2018
|
定位技术
Esri and Alibaba Cloud to Bring Enhanced Location Intelligence Technology to Cloud Users
Esri and Alibaba Cloud are working together to combine Esri’s excellence in GIS with Alibaba Cloud’s world-class Cloud Computing capabilities.
1399 0
Esri and Alibaba Cloud to Bring Enhanced Location Intelligence Technology to Cloud Users
|
API
Creating an API for Edge Computing on Alibaba Cloud
Edge computing is an approach to data processing and resource management in the cloud that can dramatically improve communication between mobile applications, gadgets, and cloud nodes.
3902 0
|
安全 Linux pouch
A Deep Insight of Alibaba Open Source Project - Pouch
Pouch is an open-source project created by Alibaba Group to promote the container technology movement.
3367 0