Skip to content

Commit

Permalink
Updated README with Troubleshooting section, added notebook n10 about…
Browse files Browse the repository at this point in the history
… importing a network from sif file and exporting it in bnet format.
  • Loading branch information
marcorusc committed Oct 28, 2024
1 parent 848a16f commit 396065d
Show file tree
Hide file tree
Showing 5 changed files with 13,373 additions and 1 deletion.
17 changes: 17 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,23 @@ For the latest development version, you can still clone the repository and insta
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.

Troubleshooting
---------------

If during the installation you encounter problems with the installation of Graphviz, you could be missing basic Graphiz installation on your machine.
You can install it on Linux system with the following command:

.. code-block:: bash
sudo apt-get install python3-dev graphviz libgraphviz-dev
or on Mac system:

.. code-block:: bash
brew install python3-dev graphviz libgraphviz-dev
For more details visit: https://graphviz.org/download/

Documentation
-------------
Expand Down
1 change: 1 addition & 0 deletions docs/src/contents.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Contents
notebooks/7_tissue_mapping
notebooks/8_Compare_networks
notebooks/9-Recreating_famous_pathways
notebooks/10_Import_and_complete_a_network

.. toctree::
:maxdepth: 1
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ All the dependencies are listed in the pyproject.toml file. To install the packa
CURRENT FEATURES:

version 0.9.1
version 0.9.6
--------------

- 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.
Expand Down
Loading

0 comments on commit 396065d

Please sign in to comment.