Examples of MDLWriter


Examples of org.openscience.cdk.io.MDLWriter

    try {
      lock.lock();
      File tmpMolFile = File.createTempFile("m2i", ".mol");
      File tmpInChIFile = File.createTempFile("m2i", ".mol.txt");
     
      MDLWriter mdlWriter = new MDLWriter(new FileWriter(tmpMolFile));
      mdlWriter.writeMolecule(mol);
      new File(inchiBinary).exists();
      //Process proc =
      String cmd = inchiBinary + " " +
      tmpMolFile.getAbsolutePath() + " " + tmpInChIFile.getAbsolutePath();
      if(key) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.