This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
""" | |
A simple Burrows-Wheeler transform function in python. | |
Algorithm presented in: | |
Burrows M, Wheeler DJ: A Block Sorting Lossless Data Compression Algorithm. | |
Technical Report 124. Palo Alto, CA: Digital Equipment Corporation; 1994. | |
USAGE: bwt.py [-h] [-i INDEX] STRING | |
""" |