Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
language: python

python:
- "3.6"
- "3.7"
- "3.8"

install:
- pip install pandas argparse requests pytest
- python setup.py install
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:focal

RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
python3 \
Expand All @@ -16,4 +16,4 @@ RUN ln -s /usr/bin/python3 /usr/bin/python && \

COPY . /app
WORKDIR /app
RUN python setup.py install
RUN python setup.py install
131 changes: 66 additions & 65 deletions docs/analysis.html

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions docs/build/_sources/analysis.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Analysis Service
=================

.. automodule:: reactome2py.analysis
:members:
5 changes: 5 additions & 0 deletions docs/build/_sources/content.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Content Service
=================

.. automodule:: reactome2py.content
:members:
32 changes: 32 additions & 0 deletions docs/build/_sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.. reactome2py documentation master file on Mon Dec 2 16:09:04 2019.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.

reactome2py Docs
==================

The reactome2py package is a library of helper functions that wrap calls to the reactome’s http API endpoints. It also supplies a utility module that simplifies access to reactome open-data.

The reactome2py package is meant to facilitate communication between reactome tools and services with python.

If you are getting started with `reactome`, visit our user’s guide page documentation site at https://reactome.org/userguide

For more information on API services or data downloads, visit:

- https://reactome.org/dev
- https://reactome.org/download-data

.. toctree::
:maxdepth: 2
:caption: Contents:

analysis
content
utils

Indices and tables
^^^^^^^^^^^^^^^^^^

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
5 changes: 5 additions & 0 deletions docs/build/_sources/utils.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Utils
=====

.. automodule:: reactome2py.utils
:members:
Loading