Skip to content

Commit

Permalink
update installation instructions doc
Browse files Browse the repository at this point in the history
  • Loading branch information
WardDeb committed Aug 21, 2023
1 parent 6b4ad36 commit f0ad1f0
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions docs/content/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@ Remember -- deepTools are available for **command line usage** as well as for
Requirements
-------------

* Python 2.7 or Python 3.x
* numpy >= 1.8.0
* Python >= 3.7
* numpy >= 1.9.0
* scipy >= 0.17.0
* py2bit >= 0.1.0
* matplotlib >= 3.3.0
* pysam >= 0.14.0
* numpydoc >= 0.5
* pyBigWig >= 0.2.1
* pysam >= 0.8
* matplotlib >= 1.4.0
* py2bit >= 0.2.0
* plotly >= 4.9
* deeptoolsintervals >= 0.1.8
* importlib-metadata (when running python 3.7)

The fastest way to obtain **Python 2.7 or Python 3.x together with numpy and scipy** is
via the `Anaconda Scientific Python
Distribution <https://store.continuum.io/cshop/anaconda/>`_.
Just download the version that's suitable for your operating system and
follow the directions for its installation. All of the requirements for deepTools can be installed in Anaconda with:
DeepTools (including the requirements) can be installed with conda:

.. code:: bash
$ conda install -c bioconda deeptools
Command line installation using ``pip``
-----------------------------------------
Command line installation using ``pip`` from pypi
--------------------------------------------------

Install deepTools using the following command:
::
Expand All @@ -45,10 +45,10 @@ If you need to specify a specific path for the installation of the tools, make u
$ pip install --install-option="--prefix=/MyPath/Tools/deepTools2.0" git+https://github.com/deeptools/deepTools.git
Command line installation without ``pip``
-------------------------------------------
Command line installation using ``pip`` from source
---------------------------------------------------

You are highly recommended to use `pip` rather than these more complicated steps.
You are highly recommended to use the 'pypi installation' rather than these more complicated steps.

1. Install the requirements listed above in the "requirements" section. This is done automatically by `pip`.

Expand All @@ -63,11 +63,11 @@ or if you want a particular release, choose one from https://github.com/deeptool
$ wget https://github.com/deeptools/deepTools/archive/1.5.12.tar.gz
$ tar -xzvf

3. install the source code (if you don't have root permission, you can set
a specific folder using the ``--prefix`` option)
3. install the source code
::

$ python setup.py install --prefix /User/Tools/deepTools2.0
$ python -m build
$ pip install dist/*whl

Galaxy installation
--------------------
Expand Down

0 comments on commit f0ad1f0

Please sign in to comment.