GithubHelp home page GithubHelp logo

hrmc's Introduction

HRMC

High-rank matrix completion for gene prioritisation

Matlab scripts to run the algorithm.

  • HRMC.m contains the implementation of our algorithm.
  • example_script.m contains an example script of how to run the complete model.

The following data in matlab file-format for using this code can be found at http://www.paccanarolab.org//hrmc-gene/

% DGAM2017: gene-disease association 2017.
% DSIM2017: Caniza et. al. semantic similarity 2017.
% PPI: HPRD protein interaction network.
% genes_names: entrez IDs.
% disease_MIM: IDs.

The usage of the HRMC model is very simple, explained step-by-step below:

Step 1: Set algorithm parameters

gamma = 10^4;
variance = 0.01;
tolX = 1e-2;
maxiter = 100;

Step 2: Column model HRMC-c

It uses the graph regularization on the semantic similarities between diseases.

C = HRMC( DGAM2017, DSIM2017,...
            0.5,...
            1, 0.5,...
           gamma, variance,...
           tolX, maxiter);
       
HRMCc = DGAM2017 * C;

Step 3: Row model HRMC-r

It uses the graph regularization on the human PPI network.

R = HRMC(DGAM2017', PPI,...
            0.5,...
           0.5, 0.5,...
            gamma, variance,...
           tolX, maxiter);

HRMCr = (DGAM2017' * R)';

Step 4: Final linear combination

p = 0.7;
Xhat = p*HRMCc + (1-p)*HRMCr; 

hrmc's People

Contributors

diegogalpy avatar

Watchers

James Cloos avatar

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.