Giter Site home page Giter Site logo

myelinet's Introduction

Hetnet prediction of candidate remyelinating compounds

Multiple sclerosis destroys the myelin coating neurons leading to disability. Here, we aim to find small molecules compounds that will promote remyelination. We base our search on our drug repurposing hetnet -- a network with multiple node and relationship types -- which provides a comprehensive framework for data integration. The hetnet is stored in a graph database called neo4j, which we use to compute network features.

Our approach to identify candidate compounds is unsupervised. We look for compounds that highly connected to myelination or oligodendrocyte differentiation. We specify the types of paths we are interested in. For example we look for paths where a Compound - targets - Gene - interacts - Gene - participates - Biological Process where the biological process is myelination.

See query.ipynb for the queries and data/queries.tsv for the results.

Queries for visualization

These queries should be run in the neo4j browser. They were chosen to produce illustrative and appropriately sized visualizations.

// Find paths between Marimastat and myelination
MATCH paths =
  (s1:Compound)-[:BINDS_CbG]-(n1)-[:INTERACTS_GiG]-()
               -[:PARTICIPATES_GpBP]-(t1:BiologicalProcess)
WHERE s1.identifier = 'DB00786' // Marimastat
  AND t1.identifier = 'GO:0042552' // myelination
  // Expressed in the central nervous system
  AND exists((:Anatomy {identifier: 'UBERON:0001017'})-[:EXPRESSES_AeG]-(n1))
RETURN paths
UNION ALL
MATCH paths = (s2:Compound)-[:BINDS_CbG]-(n1)-[:INTERACTS_GiG]-()
             -[:REGULATES_BPrG]-(t2:BiologicalProcess)
WHERE s2.identifier = 'DB00786' // Marimastat
  AND t2.identifier = 'GO:0048709' // oligodendrocyte differentiation
RETURN paths

Installation

This repository assumes a neo4j server containing the hetio-ind database is running on port 7474.

License

All original content in this repository is released under CC0 1.0.

myelinet's People

Contributors

dhimmel avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

nike-adidas

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.