Allow to parse a SDF file and convert it to an array of objects.
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);
options:
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;
},
});
const { iterator } = require('sdf-parser');
const file = await openAsBlob(join(__dirname, 'test.sdf.gz'));
const decompressionStream = new DecompressionStream('gzip');
const textDecoder = new TextDecoderStream();
const stream = file
.stream()
.pipeThrough(decompressionStream)
.pipeThrough(textDecoder);
const results = [];
for await (const entry of iterator(stream)) {
results.push(entry);
}