Martinsos / edlib

Lightweight, super fast C/C++ (& Python) library for sequence alignment using edit (Levenshtein) distance.
http://martinsos.github.io/edlib
MIT License
514 stars 167 forks source link

Unify all output parameters into one parameter #35

Closed Martinsos closed 8 years ago

Martinsos commented 9 years ago

Currently there are many output parameters in main function of edlib, like startLocations, endLocations, alignment, and so on. In order to make usage of function easier, we should pass only one object which will then be filled with output. This deprecates #34.

Martinsos commented 8 years ago

Done