Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
whitews committed Mar 1, 2024
2 parents fcfcd7a + 0a08923 commit cefd6e6
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/tests_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ on:

jobs:
test:
uses: whitews/FlowIO/.github/workflows/test_base.yml@develop
uses: whitews/FlowIO/.github/workflows/test_base.yml@develop
secrets: inherit
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ FlowIO is a Python library for reading / writing Flow Cytometry Standard (FCS)
files, with zero external dependencies and is compatible with Python 3.7+.

FlowIO retrieves event data exactly as it is encoded in the FCS file: as a
1-dimensional list without separating the events into channels or performing any preprocessing (e.g. applying gain). Metadata
stored in the FCS file is available as a dictionary via the 'text' attribute. Basic attributes
are also available for commonly accessed properties. For example, the channel count
1-dimensional list without separating the events into channels or performing
any preprocessing (e.g. applying gain). Metadata stored in the FCS file is
available as a dictionary via the 'text' attribute. Basic attributes are also
available for commonly accessed properties. For example, the channel count
can be used to easily convert the event data to a multi-column NumPy array:

```
Expand All @@ -46,7 +47,7 @@ Or, if you prefer, you can install from the GitHub source:
```
git clone https://github.com/whitews/flowio
cd flowio
python setup.py install
pip install .
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __getattr__(cls, name):
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = 'sphinx_rtd_theme'

html_theme_options = {
# 'logo': 'flowutils.png',
Expand Down
13 changes: 6 additions & 7 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ FlowIO Documentation
:target: https://pypi.org/project/flowio/

FlowIO is a Python library for reading / writing Flow Cytometry Standard (FCS)
files and has zero external dependencies. FlowIO is compatible with Python 3.7+
(FlowIO v0.9.9 was the last release supporting Python 2).
files, with zero external dependencies and is compatible with Python 3.7+.

FlowIO retrieves event data exactly as it is encoded in the FCS file: as a
1-dimensional list without separating the events into channels or performing
any preprocessing (e.g. applying gain). However, all the metadata stored in the
FCS file is available as a dictionary via the 'text' attribute. Basic attributes
are also available for commonly accessed properties. For example, the channel
count can be used to easily convert the event data to a multi-column NumPy array:
any preprocessing (e.g. applying gain). Metadata stored in the FCS file is
available as a dictionary via the 'text' attribute. Basic attributes are also
available for commonly accessed properties. For example, the channel count
can be used to easily convert the event data to a multi-column NumPy array:

.. code-block:: python
Expand Down Expand Up @@ -60,7 +59,7 @@ Or, if you prefer, you can install from the GitHub source:
git clone https://github.com/whitews/flowio
cd flowio
python setup.py install
pip install .
----

Expand Down
4 changes: 3 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Sphinx>=3
Sphinx==6.2.1
autoclasstoc
sphinx_rtd_theme==1.2.1
2 changes: 1 addition & 1 deletion src/flowio/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
FlowIO version
"""
__version__ = "1.2.2b2"
__version__ = "1.2.2b3"

0 comments on commit cefd6e6

Please sign in to comment.