Skip to content

Martinsos/node-edlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-edlib

Node wrapper for edlib sequence alignment library.

Installation

npm install node-edlib --save

Usage

var edlib = require('node-edlib');
var result = edlib.align('elephant', 'telephone', { mode: 'NW' });
console.log(result);

Test

npm test should run with no errors.

Developing

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.