Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sdf-parser

Package Overview
Dependencies
Maintainers
4
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sdf-parser

SDF parser

  • 5.0.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

sdf-parser

NPM version build status npm download

Allow to parse a SDF file and convert it to an array of objects.

Use of the package

npm install sdf-parser

In node script:

// allows to parse a file test.sdf that would be present in the same directory

var { parse } = require('sdf-parser');

var fs = require('fs');
var sdf = fs.readFileSync('./test.sdf', 'utf-8');

var result = parse(sdf);
console.log(result);

require('sdf-parser') (sdf, options)

options:

  • exclude : array of string containing the fields to discard
  • include : array of string containing the fields to keep
  • modifiers : object of functions that need to be converted during the parsing
  • filter : function that allows to filter the result
  • mixedEOL : if set to true will try to deal with mixed End Of Line separator
  • dynamicTyping : convert fields containing only number to numbers (default: true)

Advanced example with filtering and modifiers

var result = parse(sdf, {
  exclude: ['Number of H-Donors'],
  include: ['Number of H-Donors', 'CLogP', 'Code'],
  modifiers: {
    CLogP: function (field) {
      return {
        low: field * 1 - 0.2,
        high: field * 1 + 0.2,
      };
    },
  },
  filter: (entry) => {
    return entry.CLogP && entry.CLogP.low > 4;
  },
});

Streams

This API is only available on Node.js.

molecules(options)

Transform an input text stream to a stream of molecule objects.

options
  • fullResult: true to emit the full result of parse instead of just the molecules.
  • All other options from the parse function.
const { stream } = require('sdf-parser');
fs.createReadStream('test.sdf')
  .pipe(stream.molecules())
  .on('data', (molecule) => {
    console.log(molecule.molfile);
  });

entries()

Transform an input text stream to a stream of sdf entries.

const { stream } = require('sdf-parser');
fs.createReadStream('test.sdf')
  .pipe(stream.entries())
  .on('data', (entry) => {
    // sdf entry as a string
  });

License

MIT

Keywords

FAQs

Package last updated on 17 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc