Sequence Analysis > ToPS
This is an object-oriented framework that facilitates the integration of probabilistic models for sequences over a user defined alphabet. [Deprecated]
Overview
ToPS is an objected-oriented framework implemented using C++ that facilitates the integration of probabilistic models for sequences over a user defined alphabet. ToPS contains the implementation of eight distinct models to analyze discrete sequences:
- Independent and identically distributed model
- Variable-Length Markov Chain (VLMC)
- Inhomogeneous Markov Chain
- Hidden Markov Model
- Pair Hidden Markov Model
- Profile Hidden Markov Model
- Similarity Based Sequence Weighting
- Generalized Hidden Markov Model (GHMM)
The user can implement models either by manual description of the probability values in a configuration file, or by using training algorithms provided by the system. The ToPS framework also includes a set of programs that implement bayesian classifiers, sequence samplers, and sequence decoders. Finally, ToPS is an extensible and portable system that facilitates the implementation of other probabilistic models, and the development of new programs.
Example of usage is in "example" folder.
Please feel free to contact me if you have any question: André Yoshiaki Kashiwabara akashiwabara@usp.br
Documentation
http://tops.sourceforge.net/tutorial.pdf http://tops.sourceforge.net/api.html
Git Repository
You can download the development version of ToPS by executing the command below:
git clone https://github.com/ayoshiaki/tops.git
Platforms
ToPS was designed to run on Unix/Linux operating systems. Tested platforms include: MacOS X, and Ubuntu linux.
Software Requirement
ToPS was written in C++. It was compiled using the g++ version 4.2.1 and it requires
- Boost C++ Libraries version 1.52
- CMake
- Git
Installing ToPS
Download ToPS from GitHub
git clone https://github.com/ayoshiaki/tops.git
This will create a directory named tops
Go to the tops directory:
cd tops
Run the configuration script:
cmake .
Run make
make
Run make install
sudo make install
If you are using linux run ldconfig
sudo ldconfig