Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
whitews committed May 16, 2023
2 parents 4f63467 + 0fd69b9 commit ad1ad74
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ scratch/
*.egg
*.fcs
*.egg-info
/docs/_build/*
13 changes: 13 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.10"

python:
install:
- requirements: docs/requirements.txt

sphinx:
configuration: docs/conf.py
14 changes: 6 additions & 8 deletions docs/api.rst
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
.. currentmodule:: flowio

FlowIO API
===================================

FlowIO includes a single FlowData class for reading existing FCS files and
a :code:`create_fcs` function for creating new FCS files.

FlowData Class
--------------

.. autoclass:: flowio.FlowData
.. autoclass:: FlowData
:members:


Reading FCS Files with Multiple Data Sets
-----------------------------------------

.. automodule:: flowio.read_multiple_data_sets
:members:
.. autofunction:: read_multiple_data_sets

Creating New FCS Files
----------------------

.. automodule:: flowio.create_fcs
:members:
.. autofunction:: create_fcs

FlowIO Exceptions
-----------------
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
if on_rtd:
sys.path.insert(0, os.path.abspath('..'))
else:
sys.path.insert(0, os.path.abspath('../..'))
sys.path.insert(0, os.path.abspath('..'))


class Mock(MagicMock):
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Sphinx>=3
9 changes: 9 additions & 0 deletions flowio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
from .flowdata import FlowData
from .create_fcs import create_fcs
from .utils import read_multiple_data_sets
from . import exceptions as exceptions # noqa

from ._version import __version__

__all__ = [
'FlowData',
'create_fcs',
'read_multiple_data_sets',
'exceptions'
]
2 changes: 1 addition & 1 deletion flowio/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
FlowIO version
"""
__version__ = "1.2.0b0"
__version__ = "1.2.0"

0 comments on commit ad1ad74

Please sign in to comment.