sysbio-curie / Neko

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NeKo

Tests Documentation

NeKo: Network Konstructor

Neko is a Python package for extracting, visualizing, converting, and studying interactions from databases into executable activity flow-based models. It's built on top of Omnipath, Pypath, and Atopo.

Note: Neko is currently in development and approaching its final stages. It is not yet available on PyPI.

Features

  • Network creation and manipulation
  • Connection of nodes and subnetworks
  • Gene-to-phenotype mapping
  • Network visualization
  • Interaction database integration

Installation

NeKo is still in its alpha version. You can install it from PyPI and also install the necessary external dependencies.

  1. Install `NeKo` from PyPI:

    First, install the main package from PyPI (pyneko for python-NeKo):

    pip install pyneko
  2. Install External Dependencies:

    NeKo requires some external dependencies that are not available on PyPI. To install these dependencies, run:

    pip install -r https://github.com/sysbio-curie/Neko/requirements.txt

This two-step process will install both the core NeKo package and its external dependencies.

For the latest development version, you can still clone the repository and install directly from the source:

git clone https://github.com/sysbio-curie/Neko.git
cd Neko
pip install .
pip install -r requirements.txt

This will give you the latest version of NeKo (not officially released, so be aware there could be some bugs) along with the necessary external dependencies.

Documentation

For full documentation, including API reference and detailed tutorials, visit our GitHub Pages documentation.

Jupyter Notebooks

We provide a comprehensive set of Jupyter notebooks that offer a detailed and user-friendly explanation of the package. These notebooks cover all modules of NeKo and provide a complete overview of how to use the package:

  1. Usage
  2. Build network using user-defined resources
  3. Stepwise connection: a focus on the INE algorithm
  4. Connect to upstream components
  5. Build network based on kinase-phosphosite interactions
  6. Connect to downstream Gene Ontology terms.
  7. Map tissue expression
  8. Network comparison
  9. Re-creating famous pathways from SIGNOR and WIKIPATHWAYS using NeKo

You can find these notebooks in the notebooks directory of the repository.

Acknowledgements

This project is a collaborative effort with Dénes Turei and Asmund Flobak.

Current contributors: Marco Ruscone, Eirini Tsirvouli, Andrea Checcoli, Dénes Turei.

version 0.9.3

  • Network creation and manipulation: The package allows for the creation of a network of nodes and edges, with various methods for enrichment analysis. This includes adding and removing nodes and edges, loading a network from a SIF (Simple Interaction Format) file, and adding paths to the edge list of the network.
  • Connection of nodes: The package provides several methods to connect nodes in the network. This includes connecting all nodes, connecting a subgroup of nodes, connecting all nodes of a network object, and connecting subcomponents of a network object.
  • Connection of genes to phenotype: The package provides a method to connect genes to a phenotype based on provided parameters. This includes retrieving phenotype markers, identifying unique Uniprot genes, and connecting them to the network. There is also an option to compress the network by substituting specified genes with the phenotype name.

About

License:GNU General Public License v3.0


Languages

Language:Jupyter Notebook 90.0%Language:Python 10.0%