Package uk.ac.cam.ch.wwmm.opsin

Examples of uk.ac.cam.ch.wwmm.opsin.NameToStructure


      }
    }
   
    if(mol == null && request.getParameter("name") != null && request.getParameter("name").length() > 0) {
      try {
        NameToStructure nts = NameToStructure.getInstance();
        Element cml  = nts.parseToCML(request.getParameter("name"));
        if (cml != null){
          mol = StructureConverter.cmlToMolecule(cml);
          if(mol != null) {
            StructureConverter.configureMolecule(mol);         
            makeStructure = !MultiFragmentStructureDiagramGenerator.hasStructure(mol);
View Full Code Here

TOP

Related Classes of uk.ac.cam.ch.wwmm.opsin.NameToStructure

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.