Wednesday, February 16, 2011

Descriptors generated from a SDF file to Excel

Just came across the power mv output of descriptor calculation in an excel format,we have seen how to calculate the descriptor using the chemistry development kit,the same output can be generated on a excel sheet using jxl.jar, a Java API. Java Excel API is a mature, open source java API enabling developers to read, write, and modifiy Excel spreadsheets dynamically. The program works with cdk-1.3.4.jar and cdk-jchempaint-8.jar. Hope everyone is hacking their way across cdk ,please follow the blog and subscribe to the post, untill next time .wq:



/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Iterator;
import java.util.Map;
import jxl.Workbook;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;
import org.openscience.cdk.DefaultChemObjectBuilder;
import org.openscience.cdk.Molecule;
import org.openscience.cdk.exception.CDKException;
import org.openscience.cdk.interfaces.IMolecule;
import org.openscience.cdk.io.iterator.IteratingMDLReader;
import org.openscience.cdk.qsar.DescriptorEngine;
import org.openscience.cdk.qsar.DescriptorSpecification;
import org.openscience.cdk.qsar.DescriptorValue;
import org.openscience.cdk.qsar.descriptors.molecular.BCUTDescriptor;
import org.openscience.cdk.smiles.SmilesGenerator;
import org.openscience.cdk.smiles.SmilesParser;
/**
*
* @author Harish Sankar
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws FileNotFoundException, CDKException, IOException, WriteException {
// TODO code application logic here
File sdfFile = new File("C:/CID_241.sdf");
WritableWorkbook workbook = Workbook.createWorkbook(new File("output.xls"));
WritableSheet sheet = workbook.createSheet("Sheet1",0);
IteratingMDLReader reader = new IteratingMDLReader(new FileInputStream(sdfFile), DefaultChemObjectBuilder.getInstance());
SmilesGenerator sg = new SmilesGenerator();
String smile = "";
int k = 0;
while (reader.hasNext()) {
IMolecule mol = (IMolecule)reader.next();
smile = sg.createSMILES(mol);
System.out.print(smile+"\n");
BCUTDescriptor descriptor = new BCUTDescriptor();
// Molecule molecule = (Molecule) new SmilesParser(DefaultChemObjectBuilder.getInstance()).parseSmiles("NC(CO)C(=O)O");
Molecule molecule = (Molecule) new SmilesParser(DefaultChemObjectBuilder.getInstance()).parseSmiles(smile);
// Second program
DescriptorEngine engine = new DescriptorEngine(DescriptorEngine.MOLECULAR,new String[]{"lib/cdk-1.3.7.jar"});
engine.process(molecule);
/**
* The function getProperties returns a Map value. Map represents a Key Value set.
* It is retrieved using an iterator. Since the key is of DescriptorSpecification class and the
* value is of type DescriptorValue we have to typecast the key and value with the same while retrieving.
* since they have not override the same to String.
*/
Map i = molecule.getProperties();
Iterator iterator = i.keySet().iterator();
/**
* The following prints the key and Value set.
*/
Label label0 = new Label(1, k, smile);
sheet.addCell(label0);
k++;k++;
while (iterator.hasNext()) {
Object l = iterator.next();
String key = ((DescriptorSpecification) l).getSpecificationReference().toString();
Label label1 = new Label(1,k,key.substring(key.lastIndexOf("#") + 1));
sheet.addCell(label1);
Label label2 = new Label(2,k,((DescriptorValue) i.get((DescriptorSpecification)l)).getValue().toString());
sheet.addCell(label2);
k++;
}
k++;k++;
}
workbook.write();
workbook.close();
System.out.print(k+"\n");
}
}
view raw gistfile1.java hosted with ❤ by GitHub


Screenshot of the Descriptors in Excel


Saturday, February 12, 2011

Moleular Structure Generation Using cdk-1.3.8.jar and jchempaint-16.jar


Dear All,

    Hope all are having a great time working with Chemistry Devolelopment Kit. We had seen how to render the chemical structure from SMILES using cdk-1.3.4.jar and cdk-jchempaint-8.jar. It also works fine with cdk-1.3.8 and cdk-jchempaint-16.jar . A screenshot of it in action is given below.

Screenshot of the program



Wednesday, February 2, 2011

cdk Rendering Image from SMILES

The code below takes SMILES string as input and renders the structure diagram of the molecule. The program works with cdk-1.3.4.jar and cdk-jchempaint-8.jar

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* ImageRenderer.java
*
* Created on Feb 1, 2011, 11:02:52 PM
*/
/**
* @author Harish Sankar
* @version 1.0
*/
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.ImageIcon;
import org.openscience.cdk.DefaultChemObjectBuilder;
import org.openscience.cdk.Molecule;
import org.openscience.cdk.exception.InvalidSmilesException;
import org.openscience.cdk.interfaces.IMolecule;
import org.openscience.cdk.layout.StructureDiagramGenerator;
import org.openscience.cdk.renderer.AtomContainerRenderer;
import org.openscience.cdk.renderer.font.AWTFontManager;
import org.openscience.cdk.renderer.generators.BasicAtomGenerator;
import org.openscience.cdk.renderer.generators.BasicBondGenerator;
import org.openscience.cdk.renderer.generators.BasicSceneGenerator;
import org.openscience.cdk.renderer.visitor.AWTDrawVisitor;
import org.openscience.cdk.smiles.SmilesParser;
import org.openscience.cdk.templates.MoleculeFactory;
/**
*
* @author Hari
*/
public class ImageRenderer extends javax.swing.JFrame {
/** Creates new form ImageRenderer */
public ImageRenderer() {
initComponents();
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension dim = new Dimension(screenSize.width-8, screenSize.height-40);
this.setMinimumSize(dim);
this.validate();
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
jTextField1 = new javax.swing.JTextField();
jLabel1 = new javax.swing.JLabel();
jButton1 = new javax.swing.JButton();
jPanel1 = new javax.swing.JPanel();
jLabel2 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jTextField1.setText("NC(CO)C(=O)O");
jLabel1.setText("Smiles String");
jButton1.setText("Generate");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jPanel1.setBackground(new java.awt.Color(255, 255, 255));
jPanel1.setBorder(javax.swing.BorderFactory.createEtchedBorder());
jPanel1.setForeground(new java.awt.Color(236, 233, 216));
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel2, javax.swing.GroupLayout.DEFAULT_SIZE, 376, Short.MAX_VALUE)
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel2, javax.swing.GroupLayout.DEFAULT_SIZE, 246, Short.MAX_VALUE)
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addContainerGap())
.addGroup(layout.createSequentialGroup()
.addGap(18, 18, 18)
.addComponent(jLabel1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jTextField1, javax.swing.GroupLayout.DEFAULT_SIZE, 209, Short.MAX_VALUE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton1)
.addGap(20, 20, 20))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(jButton1)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addContainerGap())
);
pack();
}// </editor-fold>
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
try {
// TODO add your handling code here:
int WIDTH = 400;
int HEIGHT = 400;
// the draw area and the image should be the same size
Rectangle drawArea = new Rectangle(WIDTH, HEIGHT);
Image image = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_RGB);
IMolecule triazole = MoleculeFactory.makeCyclobutane();
Molecule molecule = (Molecule) new SmilesParser(DefaultChemObjectBuilder.getInstance()).parseSmiles(jTextField1.getText());
StructureDiagramGenerator sdg = new StructureDiagramGenerator();
sdg.setMolecule(molecule);
try {
sdg.generateCoordinates();
} catch (Exception ex) {
//Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
triazole = sdg.getMolecule();
// generators make the image elements
List generators = new ArrayList();
generators.add(new BasicSceneGenerator());
generators.add(new BasicBondGenerator());
generators.add(new BasicAtomGenerator());
// the renderer needs to have a toolkit-specific font manager
AtomContainerRenderer renderer = new AtomContainerRenderer(generators, new AWTFontManager());
// the call to 'setup' only needs to be done on the first paint
renderer.setup(triazole, drawArea);
// paint the background
Graphics2D g2 = (Graphics2D) image.getGraphics();
g2.setColor(Color.WHITE);
g2.fillRect(0, 0, WIDTH, HEIGHT);
// the paint method also needs a toolkit-specific renderer
renderer.paint(triazole, new AWTDrawVisitor(g2));
jLabel2.setIcon(new ImageIcon(image));
this.validate();
} catch (InvalidSmilesException ex) {
Logger.getLogger(ImageRenderer.class.getName()).log(Level.SEVERE, null, ex);
}
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new ImageRenderer().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JPanel jPanel1;
private javax.swing.JTextField jTextField1;
// End of variables declaration
}


Screen shot of above program in action

Tuesday, February 1, 2011

Introduction to Chemistry Development Kit for OSDD Community

Dear all,
thought of giving an intro into the Chemistry development kit,please execuse the untimely one,should have posted the introduction prima ,think of it as a quentin tarantino movie:)..so lets start with a nice excerpt from the Chemistry Development kit Readme file, The CDK is an open-source library of algorithms for structural chemo- and bioinformatics, implemented in the programming language Java(tm).This is a library of useful data structures and algorithms to manipulate them from the area of structural chemo- and bioinformatics. As such, it is intended for the use by programmers, who wish to save some effort by reusing code. It is not intended for the enduser. If you consider yourself to be more like user, you might not find what you wanted.

So thats the important part,a little bit of programming and lot of help from the various IDE's(eclipse,netbeans,komodo) present we can work on this. CDK is a really useful tool, with lots of classes and libraries to help us out.. unlike paid softwares u dont have to confine ur self to the bunch of functions they provide u with.. theres been a lot of instances where i have lamented on the money spent on s/w :`-( .... so as with the true jest of what OSDD stands for,we have to scale the potentiality of the Chemsitry development kit a open source software and believe me with guys like egon and company at the helm of things we wouldnt be stranded at any line of a programe ,coz there is help from around the globe..

hoping this humble intro to set things in motion for us to play our part in the projection of this open source software, i wish u happy coding:)

Friday, January 14, 2011

GUI for Descriptor Calculation from USER INPUT SMILES

This Program takes a Smiles string as input and generates corresponding Descriptor Specification and Descriptor Value. It uses cdk1.3.7.jar and cdk-jchempaint-8.jar.


import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.Toolkit;
import java.util.Iterator;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.table.DefaultTableModel;
import org.openscience.cdk.DefaultChemObjectBuilder;
import org.openscience.cdk.Molecule;
import org.openscience.cdk.exception.CDKException;
import org.openscience.cdk.qsar.DescriptorEngine;
import org.openscience.cdk.qsar.DescriptorSpecification;
import org.openscience.cdk.qsar.DescriptorValue;
import org.openscience.cdk.qsar.descriptors.molecular.BCUTDescriptor;
import org.openscience.cdk.smiles.SmilesParser;
/**
*
* @author Hari
*acknowledgement:cdk team,Ramachandran.T.C.
*/
public class Descriptor extends javax.swing.JFrame {
/** Creates new form Descriptor */
public Descriptor(String smile) {
initComponents();
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension dim = new Dimension(screenSize.width-8, screenSize.height-40);
this.setMinimumSize(dim);
this.validate();
tmodel = (DefaultTableModel) jTable1.getModel();
// jTextField1.setText(smile);
}
/** This method is called from within the constructor to
* initialize the form.
*
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
jScrollPane1 = new javax.swing.JScrollPane();
jTable1 = new javax.swing.JTable();
jLabel1 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Descriptor");
jTable1.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
"Descriptor Specification", "Descriptor Value"
}
) {
boolean[] canEdit = new boolean [] {
false, false
};
public boolean isCellEditable(int rowIndex, int columnIndex) {
return canEdit [columnIndex];
}
});
jTable1.getTableHeader().setReorderingAllowed(false);
jScrollPane1.setViewportView(jTable1);
jTable1.getColumnModel().getColumn(0).setMinWidth(200);
jTable1.getColumnModel().getColumn(0).setMaxWidth(200);
jLabel1.setText("Smile");
jTextField1.setText("NC(CO)C(=O)O");
jButton1.setText("Generate");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel1)
.addGap(18, 18, 18)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 163, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(28, 28, 28)
.addComponent(jButton1)
.addContainerGap(93, Short.MAX_VALUE))
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 413, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jButton1))
.addGap(1, 1, 1)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 268, Short.MAX_VALUE))
);
pack();
}// </editor-fold>
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
try {
// TODO add your handling code here:
setCursor(new Cursor(Cursor.WAIT_CURSOR));
BCUTDescriptor descriptor = new BCUTDescriptor();
// Molecule molecule = (Molecule) new SmilesParser(DefaultChemObjectBuilder.getInstance()).parseSmiles("NC(CO)C(=O)O");
Molecule molecule = (Molecule) new SmilesParser(DefaultChemObjectBuilder.getInstance()).parseSmiles(jTextField1.getText());
// Second program
DescriptorEngine engine = new DescriptorEngine(DescriptorEngine.MOLECULAR,new String[]{"lib/cdk-1.3.7.jar"});
engine.process(molecule);
/**
* The function getProperties returns a Map value. Map represents a Key Value set.
* It is retrieved using an iterator. Since the key is of DescriptorSpecification class and the
* value is of type DescriptorValue we have to typecast the key and value with the same while retrieving.
* since they have not override the same to String.
*/
Map i = molecule.getProperties();
Iterator iterator = i.keySet().iterator();
Object[] o = i.keySet().toArray();
System.out.print("" + o.length + "\n\n");
/**
* The following prints the key and Value set.
*/
while (iterator.hasNext()) {
Object l = iterator.next();
String key = ((DescriptorSpecification) l).getSpecificationReference().toString();
tmodel.addRow(new Object[]{key.substring(key.lastIndexOf("#") + 1), ((DescriptorValue) i.get((DescriptorSpecification)l)).getValue().toString()});
}
setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
} catch (CDKException ex) {
Logger.getLogger(Descriptor.class.getName()).log(Level.SEVERE, null, ex);
}
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Descriptor(null).setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTable jTable1;
private javax.swing.JTextField jTextField1;
// End of variables declaration
DefaultTableModel tmodel;
}


Screeen Shot of the above program