Home Experience Research Focus People Publications Books Projects Datasets Repository Awards Recognitions Events Gallery CIS11 IDEA Lab AIDAR Lab

MTBA: A MATLAB Toolbox for Biclustering Analysis
Developers: Jayesh Kumar Gupta, Sumanik Singh , Nishchal K. Verma & Shruti Jain


MTBA logo

Getting started with MTBA

Foreword

With MTBA, you can using state-of-the-art algorithms, with minimal effort. The toolbox targets great flexibility in the problem description and comes with advanced features. Further work still in progress: feedback and contributions are welcome!


Downloads

    

The current version is 1.2 and was packaged on June 30, 2015. The file is less than Mb.

Install

1. Unzip and copy the whole mtba directory you just downloaded in a location of your choice on disk, say, in /my/directory/.
Add /my/directory/mtba/ to the Matlab path, either by typing addpath('/my/directory/mtba/') at the command prompt, or through the menu File » Set Path... » Add Folder.... Save the path if you would like Matlab to remember this.

Example

The easiest way to use MTBA is to call the biclust function, with the two-dimensional data matrix and the method name:
data = load('yeast.dat'); % load matrix
result = biclust(data, 'cc'); % apply Cheng & Church Algorithm with default parameters