A Python library for SeaFlow data.
Project description
Seaflowpy
A Python package for SeaFlow flow cytometer data.
Install
This package is compatible with Python 3.7.
Command-line tool as single-file download
Single file executables of the seaflowpy
command-line tool
for MacOS and Linux can be downloaded from the project's github
releases page.
This is the recommended method if only the command-line tool is required.
Docker
Docker image are available from Docker Hub at ctberthiaume/seaflowpy
.
docker run -it ctberthiaume/seaflowpy seaflowpy version
The Docker build file is in this repo at /Dockerfile
.
PyPI
pip3 install seaflowpy
Source
This will clone the repo and create a new virtual environment seaflowpy
.
venv
can be replaced with virtualenv
, conda
, etc.
git clone https://github.com/armbrustlab/seaflowpy
cd seaflowpy
python3 -m venv seaflowpy
source seaflowpy/bin/activate
pip3 install -r requirements.txt
pip3 install .
# Confirm the seaflowpy command-line tool is accessible
seaflowpy version
deactivate
Configuration
To use seaflowpy sfl manifest
AWS credentials need to be configured.
The easiest way to do this is to install the awscli
Python package
and go through configuration.
pip3 install awscli
aws configure
This will store AWS configuration in ~/.aws
which seaflowpy
will use to
access Seaflow data in S3 storage.
Integration with R
To call seaflowpy
from R, update the PATH environment variable in
~/.Renviron
. For example:
PATH=${PATH}:${HOME}/venvs/seaflowpy/bin
Testing
Seaflowpy uses pytest
for testing. Tests can be run from this directory as
pytest
to test the installed version of the package, or run tox
to install
the source into a temporary virtual environment for testing.
Command-line interface
All seaflowpy
CLI tools are accessible from the seaflowpy
executable.
Run seaflowpy --help
to begin exploring the CLI usage documentation.
SFL validation workflow
SFL validation sub-commands are available under the seaflowpy sfl
command.
The usage details for each command can be accessed as seaflowpy sfl <cmd> -h
.
The basic worfkflow should be
-
If starting with an SDS file, first convert to SFL with
seaflowpy sds2sfl
-
If the SFL file is output from
sds2sfl
or is a raw SeaFlow SFL file, convert it to a normalized format withseaflowpy sfl print
. This command can be used to concatenate multiple SFL files, e.g. merge all SFL files in day-of-year directories. -
Check for potential errors or warnings with
seaflowpy sfl validate
. -
Fix errors and warnings. Duplicate file errors can be fixed with
seaflowpy sfl dedup
. Bad lat/lon errors may be fixed withseaflowpy sfl convert-gga
, assuming the bad coordinates are GGA to begin with. This can be checked with withseaflowpy sfl detect-gga
. Other errors or missing values may need to be fixed manually. -
(Optional) Update event rates based on true event counts and file duration with
seaflowpy sfl fix-event-rate
. True event counts for raw EVT files can be determined withseaflowpy evt count
. If filtering has already been performed then event counts can be pulled from theall_count
column of the opp table in the SQLITE3 database. e.g.sqlite3 -separator $'\t' SCOPE_14.db 'SELECT file, all_count ORDER BY file'
-
(Optional) As a check for dataset completeness, the list of files in an SFL file can be compared to the actual EVT files present with
seaflowpy sfl manifest
. It's normal for a few files to differ, especially near midnight. If a large number of files are missing it may be a sign that the data transfer was incomplete or the SFL file is missing some days. -
Once all errors or warnings have been fixed, do a final
seaflowpy validate
before adding the SFL file to the appropriate repository.
Development
Source code structure
This project follows the Git feature branch workflow.
Active development happens on the develop
branch and on feature branches which are eventually merged into develop
.
Commits on the master
branch represent stable release snapshots with version tags and build products,
merged from develop
with --no-ff
to create a single commit in master
while keeping the complete commit history in develop.
Build
To build source tarball, wheel, PyInstaller files, and Docker image, run ./build.sh
.
This will
-
create
dist
with source tarball and wheel file -
executable files in
./pyinstaller/macos/dist/seaflowpy
and./pyinstaller/linux64/dist/seaflowpy
-
Docker image named
seaflowpy:<version>
To remove all build files, run git clean -fd
.
PyInstaller files and Docker image create depend on the wheel file located in dist
.
Updating requirements files
Create a new virtual environment
python3 -m venv newenv
source newenv/bin/actviate
And install seaflowpy
pip3 install .
Then freeze the requirements
pip3 freeze | grep -v seaflowpy >requirements.txt
Then install dev dependencies and freeze
pip3 install pylint pytest tox twine
pip3 freeze | grep -v seaflowpy >requirements-dev.txt
Do some testing, then leave this temporary virtual environment
deactivate
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file seaflowpy-0.15.1.tar.gz
.
File metadata
- Download URL: seaflowpy-0.15.1.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62a93194056df5f7cda2c7691fd83f630f72d55f7686f21f6f9185cffad1c435 |
|
MD5 | dd766041b09e13cd1ae8224dacc213ef |
|
BLAKE2b-256 | 608102cd1d78e4ee08c0fef2292a0287b52af31d61da4d100aa4aada537a8f20 |
File details
Details for the file seaflowpy-0.15.1-py3-none-any.whl
.
File metadata
- Download URL: seaflowpy-0.15.1-py3-none-any.whl
- Upload date:
- Size: 58.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db3ee457d67cdb39d876c762147ae6e40a25cc732a4dd69e8459d1519b8780e3 |
|
MD5 | 04178ed2de970f56a183c23c174265ef |
|
BLAKE2b-256 | a5582e2ff00be8c2cc88accef1061dc81205c488d10421de5424c82e45441487 |