An open API service indexing awesome lists of open source software.

https://github.com/gregoryv/align

Needleman and Wunsh sequence alignment algorithm
https://github.com/gregoryv/align

align golang needleman sequence

Last synced: about 1 year ago
JSON representation

Needleman and Wunsh sequence alignment algorithm

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/gregoryv/align.svg?branch=master)](https://travis-ci.org/gregoryv/align)
[![codecov](https://codecov.io/gh/gregoryv/align/branch/master/graph/badge.svg)](https://codecov.io/gh/gregoryv/align)
[![Maintainability](https://api.codeclimate.com/v1/badges/26244c26015ebba7f5f0/maintainability)](https://codeclimate.com/github/gregoryv/align/maintainability)

[align](https://godoc.org/github.com/gregoryv/align) - Implements Needleman and Wunsh alignment algorithm

Detailed description is found at [wikipedia Needleman-Wunsch_algorithm](https://en.wikipedia.org/wiki/Needleman%E2%80%93Wunsch_algorithm)

## Fuzzy match example

a := "GCATGCUAAAAAAA"
b := "GATTACAAAAAAAABBB"
if align.Compare(a, b) > 0.7 {
fmt.Println("similar enough")
}