Aleksandr Savelev
Aleksandr Savelev
* Made changes for indigo-service to correctly work with sessions * Restore indigo-server REST API tests
**Background** Ketcher should interact with Indigo using Ket format. The generic functions should not change the existing objects on canvas. **Acceptance criteria:** Calculate CIP methods should work for Ket format...
**Background** Ketcher should interact with Indigo using Ket format. The generic functions should not change the existing objects on canvas. **Acceptance criteria:** Aromatize and dearomatize methods should work for Ket...
**Acceptance criteria:** Ket format should support CIP labels for atoms Specification is updated CIP labels should be moved from Sgroup -> Atom properties
**Acceptance criteria:** Each section in the format contains an example
Changes by https://github.com/sapiosciences-dev for ElasticSearch Term queries
**Background** There is a requirement to support asian fonts in Ketcher **Solution** Publish indigo-ketcher-asian (current indigo-ketcher-cjk) to npm
**Background** There are no functions for radical verification **Solution** Create function bingo.isRadical() for molecule and reaction Function should loop though all atoms in molecule(reaction) and if the atom is a...
**Steps to Reproduce** ``` smiles = "C"; smarts = "[!#6]"; Indigo indigo = new Indigo(); IndigoObject pattern = indigo.loadSmarts(smarts); IndigoObject molecule = indigo.loadMolecule(smiles); IndigoObject match = indigo.substructureMatcher(molecule).match(pattern); if (match !=null)...