Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shenwei356/bwt
Burrows-Wheeler Transform and FM-index in golang
https://github.com/shenwei356/bwt
bioinformatics burrows-wheeler-transform bwt fm-index
Last synced: about 2 months ago
JSON representation
Burrows-Wheeler Transform and FM-index in golang
- Host: GitHub
- URL: https://github.com/shenwei356/bwt
- Owner: shenwei356
- License: mit
- Created: 2015-11-08T04:49:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-07T02:00:12.000Z (almost 2 years ago)
- Last Synced: 2024-08-03T01:14:08.252Z (5 months ago)
- Topics: bioinformatics, burrows-wheeler-transform, bwt, fm-index
- Language: Go
- Homepage:
- Size: 36.1 KB
- Stars: 19
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bio-go - bwt - Wheeler Transform and FM-index in Golang. (Sequence Analysis and Manipulation)
README
# bwt
[![Go Reference](https://pkg.go.dev/badge/github.com/shenwei356/bwt.svg)](https://pkg.go.dev/github.com/shenwei356/bwt)
[![Go Report Card](https://goreportcard.com/badge/github.com/shenwei356/bwt)](https://goreportcard.com/report/github.com/shenwei356/bwt)Burrows-Wheeler Transform and FM-index in golang
## Install
This package is "go-gettable", just:
go get -u github.com/shenwei356/bwt
## Licence
Copyright (c) 2015-2021, Wei Shen ([email protected])
[MIT License](https://github.com/shenwei356/bwt/blob/master/LICENSE)
## Other resources
- [String algorithm visualizations](https://curiouscoding.nl/posts/alg-viz/)
- [Linear-time suffix array construction](https://curiouscoding.nl/notes/suffix-array-construction/)
- [BWT and FM-index](https://curiouscoding.nl/notes/bwt/)