Skip to content

Commit

Permalink
Merge pull request #22 from VDBWRAIR/dev
Browse files Browse the repository at this point in the history
Fix install docs
  • Loading branch information
necrolyte2 committed Dec 23, 2015
2 parents 78a7837 + 5201513 commit c4fb29d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bactpipeline/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = '2.0.1'
__release__ = __version__ + 'b0'
__version__ = '2.0.2'
__release__ = __version__
__authors__ = 'Tyghe Vallard, Michael panciera'
__authoremails__ = '[email protected], [email protected]'
__description__ = 'Simplistic genome denovo-assembly pipeline'
Expand Down
20 changes: 16 additions & 4 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,22 @@ Installation
git clone https://github.com/VDBWRAIR/bactpipeline.git
2. Install python virtualenv
2. Enter code directory

.. code-block:: bash
virtualenv bactpipeline
. bactpipeline/bin/activate
pip install -r bactpipeline/requirements.txt
cd bactpipeline
3. Install python virtualenv

.. code-block:: bash
virtualenv env
. env/bin/activate
4. Install bactpipeline

.. code-block:: bash
pip install -r requirements.txt
python setup.py install

0 comments on commit c4fb29d

Please sign in to comment.