Package org.openscience.cdk.io

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

Related Classes of org.openscience.cdk.io.MDLWriter

Copyright © 2018 www.massapicom. 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.