GithubHelp home page GithubHelp logo

padilha / biclustlib Goto Github PK

View Code? Open in Web Editor NEW
49.0 7.0 18.0 9.85 MB

A Python library of biclustering algorithms, evaluation measures and datasets.

License: GNU General Public License v3.0

Python 100.00%

biclustlib's Introduction

biclustlib

biclustlib is a Python library of biclustering algorithms, evaluation measures and datasets distributed under the GPLv3 license.

This library is under constant update. We expect to review its code and release a first version soon.

Installation

First you need to ensure that all packages have been installed.

  • See requirements.txt
  • R >= 3.5;
  • biclust R package;
  • isa2 R package;
  • Other specific libraries may be required by third party implementations that are wrapped in this package;

If you miss something you can simply type:

  • pip install -r requirements.txt

If you have all dependencies installed:

  • python setup.py install

Citing us

If you use biclustlib in a scientific publication, we would appreciate citations of our paper where this library was first mentioned and used.

To cite biclustlib use: Padilha, V. A. & Campello, R. J. G. B. (2017). A systematic comparative evaluation of biclustering techniques. BMC Bioinformatics, 18(1):55.

For TeX/LaTeX:

@article{padilha2017,
  title={A systematic comparative evaluation of biclustering techniques},
  author={Padilha, Victor A and Campello, Ricardo J G B},
  journal={BMC Bioinformatics},
  volume={18},
  number={1},
  pages={55},
  year={2017},
  publisher={BioMed Central}
}

Available algorithms

Python implementations

Wrappers for publicly available software

Python packages

R packages

Other implementations

All the binaries are available with biclustlib and are compiled for the x86_64 architecture.

Available data collections

Available external evaluation measures

Example of use

import numpy as np

from biclustlib.algorithms import ChengChurchAlgorithm
from biclustlib.datasets import load_yeast_tavazoie

# load yeast data used in the original Cheng and Church's paper
data = load_yeast_tavazoie().values

# missing value imputation suggested by Cheng and Church
missing = np.where(data < 0.0)
data[missing] = np.random.randint(low=0, high=800, size=len(missing[0]))

# creating an instance of the ChengChurchAlgorithm class and running with the parameters of the original study
cca = ChengChurchAlgorithm(num_biclusters=100, msr_threshold=300.0, multiple_node_deletion_threshold=1.2)
biclustering = cca.run(data)
print(biclustering)

License (GPLv3)

biclustlib: A Python library of biclustering algorithms and evaluation measures.
Copyright (C) 2017  Victor Alexandre Padilha

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

biclustlib's People

Contributors

gokceneraslan avatar kordiand avatar padilha avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

biclustlib's Issues

Error in example of use

Hi! when I tried to compile your example I found this error:

from biclustlib.algorithms import ChengChurchAlgorithm

File "/home/alexander/Documents/IA376G/EFC2/biclustlib/biclustlib/algorithms/init.py", line 21, in
from .bcca import BiCorrelationClusteringAlgorithm
File "/home/alexander/Documents/IA376G/EFC2/biclustlib/biclustlib/algorithms/bcca.py", line 21, in
from ._base import BaseBiclusteringAlgorithm
File "/home/alexander/Documents/IA376G/EFC2/biclustlib/biclustlib/algorithms/_base.py", line 23
class BaseBiclusteringAlgorithm(object, metaclass=ABCMeta):
^
SyntaxError: invalid syntax

Any solution or it was my mistake?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.