Node wrapper for edlib sequence alignment library.
npm install node-edlib --save
var edlib = require('node-edlib');
var result = edlib.align('elephant', 'telephone', { mode: 'NW' });
console.log(result);
npm test
should run with no errors.
When developing, first run make edlib EDLIB_REF=master
to download edlib, and then run npm install
to install node-edlib.
Then run npm test
to test that all is ok.