Compressed-Enhanced-Suffix-Array
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:An implementation of a compressed suffix array based index with succinct longest common preffix information.
Code disponibilized by:
Daniel Saad and Mauricio Ayala-Rincón

danielsaad88@gmail.com
ayala@unb.br




COMPILATION
===========

In order to compile the source code, just do:

>  $ make

This will generate 3 executables:

1. index - Our index.

2. control - A program that uses libdivsufsort for comparison with our index.

3. textGenerator - A program responsible to generate well formed files.

INPUT FILES
===========

A well formed file, which is a text file that has the last symbol
lexicographically smaller than the others.  For example:

> actagaccat$


EXECUTION
=========

Here we show how to run the programs.

1. index
  To create the index one must execute:

>  $ ./index -create  

  To search for ocurrences, one must do:

>  $ ./index -search   

2. control

  Same semantic from 1).

3. textGenerator

  To generate a DNA well formed text, one must use:

>  $ textGenerator   >  dnaText.txt

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。