Thursday, December 20, 2007

LEADFINDING.COM, ONLINE HIT-TO-LEAD OPTIMIZATION SERVICE

San Diego, California – December 17th, 2007 – ChemDiv Inc (San Diego) and Quantum Pharmaceuticals (Moscow) announce the launch of LEADFINDING.COM, their powerful new internet-based hit-to-lead optimization service and online chemistry store.
LEADFINDING.COM brings together, the industry leading computational chemistry software from Quantum Pharmaceuticals and ChemDiv’s world’s largest and most diverse small molecule collection for drug discovery. Fully automated web-based interface predicts binding affinities on the fly, facilitating basic hit-to-lead optimization tasks for a wide audience of researchers.
LEADFINDING.COM will be of special interest to academic and biotech researchers who have identified a small molecule hit and wish to deploy LEADFINDING.COM’s expertise in selecting candidate molecules for hit follow-up. We offer an online hit-to-lead service helping identify novel chemical lead series from ChemDiv world’s largest Discovery Collection of small molecules. LEADFINDING.COM provides unique online computational tools including hit analog searches, physiochemical properties filters, and predictions of biological activity (IC50). Availability of all selected molecules can be confirmed for online purchase and immediate delivery.
About LEADFINDING:
LEADFINDING is a joint project of ChemDiv, Inc. (ChemDiv) and Quantum Pharmaceuticals (Quantum). The project is resulting from Quantum’s effort in bringing the power of their computational models to the world life sciences community and ChemDiv’s conceptual approach to modern day discovery process. ChemDiv has been constantly contributing to the evolution of drug discovery roadmap, most recently by introducing the Chemistry Anywhere™ concept. Chemistry Anywhere™ is ChemDiv’s partnering program which by accessing a variety of online research tools shortens the time from design to wet lab results.
About ChemDiv:
ChemDiv ( www.chemdiv.com ) is a global chemistry-driven contract research organization. ChemDiv is focused on identifying and delivering pre-clinical opportunities and services to life science partners for the treatment of life-threatening diseases. Over 17 years ChemDiv provides Discovery outSourceTM solutions including medicinal and synthetic chemistry, pre-clinical development, screening libraries and global logistics. ChemDiv international research team encompasses 550 chemists and biologists in San Diego and Moscow based R&D centers.
About Quantum Pharmaceuticals:
Quantum (www.q-pharm.com) develops and commercializes industry leading computational drug discovery technologies based on applying quantum, molecular and statistical physics in molecular modeling. Our solutions help pharmaceutical companies and research facilities around the world successfully accelerate the identification and optimization of new compounds that have the potential to become drug products.

Tuesday, December 18, 2007

How good are biological data - II: Trombine, GSK, GPCR

Many bindign affinity prediction methods, such as scores and QSAR models, rely on availability of accurate information on binding constants. The figure on the left is a result of our sdf-file parser applied to trombine (blue) and GSK (yellow) binding data from BindingDB database. The parser is written with python and uses pybel to extract unique molecules from a given multimolecular sdf.
The parser not only finds identical (in Tanimoto-similarity sense) compounds, but also prints the binding constants from the sdf records. The graph shows the correlation of the reported inverse log(binding constants) for the same molecules from different entries (sources).
The result is in fact fairly impressive (the blue points): the discrepancies-"errors" are quite large and are especially profound for good (or better say very good) binders.
The yellow points represent the result of the same script over GSK-kinase activity data. Although the total number of molecules in BindDB is much larger, almost all of them are unique. The difference between different sources is not as much as for trombine.
The Figure on the right is the visualized script output for GPCR(5-HT2B) from PDSP Ki database. The situation is roughly the same: the accuracy of a typical biological experiment reported in a literature amounts roughly to a single unit of pKd.

This and previously reported correlation for HERG ion channel should serve as an example when the results of binding affinity calculations are compared to experimental data.

Monday, December 10, 2007

EMD Serono, Inc licensed Quantum Pharmaceuticals’ drug discovery technology.


Moscow, 10 December, 2007

EMD Serono, Inc entered license agreement with Quantum Pharmaceuticals to get an access to Quantum Pharmaceuticals’ small molecule hit identification computational platform and apply it in in-house research.

The Quantum Pharmaceuticals’ industry leading computational drug design technologies is based on applying quantum, molecular and statistical physics in molecular modeling and was successfully applied in different drug discovery projects. The initial term of the agreement is one year. The financial terms of the agreement were not disclosed.

Quantum Pharmaceuticals is a drug discovery company based in Moscow, Russia specializing in small molecule screening and design through the use of its proprietary technology platform.

EMD Serono, Inc. and Merck Serono S.A. are affiliates of Merck KGaA, Darmstadt, Germany, with over 16,000 employees worldwide and a strong presence on all continents.

Friday, December 7, 2007

How good are biological experiments? HERG binding data analysis


A correlation between predicted and expermentally measured values of biological activity is a natural measure of a model quality. For instance, QUANTUM docking software calculates binding free energies, which are directly comparable with experimental values of -p(binding constant, Kd). Root mean squared error between the measured and the calculated quantities is the quantitative measure of the software performance.
Whatever the correlation is presented to prove the validity of a model, another important issue is the quality of the experimental data itself. The reported values for binding constants (or activities) often vary because of different measurement strategies, experimental errors or interpretation uncertanties. To visualize the situation we investigated a few datasets for HERG binding taken from QSAR World website.
The downloaded files were saved in source folder and processed with the following simple python script (thanks to openbabel):
files = os.listdir('source/')
molecules = []
for file in files:
molfile = readfile("sdf",'source/'+file)
for mol in molfile:
molfp = mol.calcfp()
present = 0
for savedmol in molecules:
savedmolfp = savedmol.calcfp()
if (molfp | savedmolfp == 1):
present = 1
print mol.data, savedmol.data
if (not present):
molecules.append(mol)

The results where analyzed in a spreadsheet program and represented on the graph above. A lot of molecules occur multiple times in the datasets. While in many of the cases the activities coinside up to 0.01 (which most probably indicates citing from a single source), the remaining values thouch correlated with each other, differ by roughly a single pKd unit.