Source repository for the Sphinx documentation of the bigbio/quantms Nextflow pipeline.
The documentation is built by ReadTheDocs. You can see previews of your changes for a PR-specific build on ReadTheDocs project builds, and under the Actions tab of this PR.
In order to build the docs, you need to
- Install sphinx and additional support packages
- Build the package reference files
- Run sphinx to create a local html version
Install the docs dependencies of the package (as specified in requirements.txt):
# in main folder
pip install -r requirements.txtRun the following command inside the docs folder to build the HTML:
# build page in docs folder
python setup_docs.py # downloads files from bigbio/quantms/docs folder,
# called in conf.py if built on Read The Docs.
sphinx-build -n -W --keep-going -b html ./ ./_build/
