Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 654 Bytes

README.rst

File metadata and controls

32 lines (19 loc) · 654 Bytes

Build Doc

Following steps explains how to build documents locally.

Create a conda environment:

conda create -n balsamic_doc -c bioconda -c conda-forge python=3.6 pip
conda activate balsamic_doc

Install Sphinx and extensions:

cd docs
pip install -r requirements.txt -r ../requirements-dev.txt -r ../requirements.txt 

Build docs:

sphinx-apidoc -o source/ ../BALSAMIC
sphinx-build -T -E -b html -d _build/doctrees-readthedocs -D language=en . _build/html

View docs (open or similar command from your OS):

open _build/html/index.html