Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bergos/smiles

OpenSMILES compatible parser and serializer
https://github.com/bergos/smiles

Last synced: about 2 months ago
JSON representation

OpenSMILES compatible parser and serializer

Awesome Lists containing this project

README

        

# smiles

OpenSMILES compatible parser and serializer

## Usage

// load module
var smiles = require('smiles')

// parse a SMILES string, returns an array of SMILES tokens [{type: '...', value: '...'}, ...]
var tokens = smiles.parse('IC(C=C1OC)=C(OC)C=C1CC(C)N')

// serializes an array of SMILES tokens into a SMILES string
var smilesString = smiles.serialize(tokens)