Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…o graphviz
  • Loading branch information
formersbach committed Jun 22, 2022
2 parents 61bda09 + 55c05af commit 8425db7
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ $ pip install biomass

BioMASS supports Python 3.7 or newer.

:ledger: **Note: You will need to manually install [Graphviz](https://www.graphviz.org) (version 2.42 or later).**

## References

- Imoto, H., Zhang, S. & Okada, M. A Computational Framework for Prediction and Analysis of Cancer Signaling Dynamics from RNA Sequencing Data—Application to the ErbB Receptor Signaling Pathway. _Cancers_ **12**, 2878 (2020). https://doi.org/10.3390/cancers12102878
Expand Down
38 changes: 28 additions & 10 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,46 @@ Installation

BioMASS supports Python 3.7 or newer.


PyPI
----

Install BioMASS from PyPI using::

pip install biomass

Development version
-------------------
.. Note::
You will need to manually install `Graphviz <https://www.graphviz.org>`_ (version 2.42 or later).

If you want the latest development version, install from GitHub using::
Linux (Ubuntu and Debian)
^^^^^^^^^^^^^^^^^^^^^^^^^

pip install git+https://github.com/biomass-dev/biomass
.. code-block::
$ sudo apt-get install graphviz graphviz-dev
Linux (Fedora and Red Hat)
^^^^^^^^^^^^^^^^^^^^^^^^^^

You may need to replace ``dnf`` with ``yum`` in the example below.

Docker
------
.. code-block::
$ sudo dnf install graphviz graphviz-devel
BioMASS is also available through docker::
macOS
^^^^^

docker pull jnicolaus/biomass:latest
Use the Homebrew package manager.

.. code-block::
or through singularity::
$ brew install graphviz
Development version
-------------------

If you want the latest development version, install from GitHub using::

pip install git+https://github.com/biomass-dev/biomass

singularity pull docker://jnicolaus/biomass:latest
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
matplotlib>=3.0
numpy>=1.17
pandas>=0.24
pygraphviz
scipy>=1.6 # integrate.simps was renamed to integrate.simpson (v1.6.0)
seaborn>=0.11.2
tqdm>=4.50.2
Expand Down

0 comments on commit 8425db7

Please sign in to comment.