A general package for tidying, annotating, and analyzing 96-well plate data.
Project description
ninetysix
A general package for annotating, processing, and visualizing 96-well* plate data.
(*n-well, really.)
Purpose
ninetysix provides a method of combining well-value data pairs and efficiently adding additional information (e.g., controls, well conditions) and processing and visualizing the results.
This primarily works via the Plate class, but visualization tools are available for pandas DataFrame objects as well through ninetysix.viz.
Visit the ninetysix GitHub Pages site for detailed and interactive examples.
Install
pip install ninetysix
Although jupyter lab is not a strict dependency for ninetysix, much of the visualization functionality benefits from being run in a notebook. If your jupyter lab and other packages are up to date, the above pip install should suffice. If you have issues, the following conda environment should work:
# Create the environment with python and jupyterlab installed
conda create -n ns_env python jupyterlab
# Activate the environment
conda activate ns_env
# Install ninetysix and its dependencies
pip install ninetysix
# Open jupyter lab
jupyter lab
Features
ninetysix.Plate
The heart of this package, a Plate object contains three major groups to describe a well:
locations, annotations, and values,
which are always arrayed in that order.
Plate performs value-oriented operations
The 'most important' (or perhaps 'most relevant') value is set as the right-most column in the data, which is automatically used in downstream processing and visualization unless explicitly overwritten, thus saving time needing to specify what data to use during exploratory data analysis.
New columns are assumed to be generic annotations, but can be moved to locations or values as desired to streamline your processing and analysis (see Examples below).
Plate uses the flexibility of the pandas DataFrame
Plate objects have nearly all methods available to a DataFrame (e.g., merge), but will return a Plate object when possible.
>>> import ninetysix as ns
>>> import pandas as pd
>>> # Create Plate
>>> plate = ns.Plate('example_data.csv')
>>> # Create DataFrame with only row A and column 'plate'
>>> df = pd.DataFrame({
... 'well': [f'A{i}' for i in range(1, 13)],
... 'plate': 1
... })
>>> # Call `pd.merge` from Plate
>>> merged_plate = plate.merge(df)
>>> # Returned object is a Plate
>>> type(merged_plate)
ninetysix.plate.Plate
This new plate object will retain the same locations, annotations, and values attributes.
ninetysix.parsers.well_regex
Dictionaries with key-value pairs that represent a single well and information about it are a powerful way to add information to a plate, but writing 96 key-value pairs is cumbersome. To alleviate this, ninetysix provides well_regex in the parsers module, which accepts well keys written in a simple regex form and expands them.
>>> from ninetysix.parsers import well_regex
>>> well_info = {
... '[A-C]10': 'control',
... '[A,H][1,12]': 'empty',
... }
>>> well_regex(well_info)
{'A10': 'control',
'B10': 'control',
'C10': 'control',
'A1': 'empty',
'A12': 'empty',
'H1': 'empty',
'H12': 'empty'}
ninetysix.viz
Quick access to scatter charts, plate heatmaps, and aggregated charts are available for both Plate and DataFrame objects, leveraging the information encoded in these objects to generate annotated visualizations.
These plots are based on the holoviews (http://holoviews.org/) package with the bokeh backend. The chart outputs of viz can be further tuned using the tools provided in these packages.
Plotting functions are available directly as Plate methods for an efficient workflow:
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ninetysix-0.0.5.tar.gz.
File metadata
- Download URL: ninetysix-0.0.5.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d08196f781f0641ca69c9e8015082faae636ac50a813b97f17a2228cad224baf
|
|
| MD5 |
e6da6d6217e8dbc530cbe6f9fd4f46e8
|
|
| BLAKE2b-256 |
594436db8372708afc5040bb5442838e7c77689e90ddfa3cc91387fc16f971cb
|
File details
Details for the file ninetysix-0.0.5-py3-none-any.whl.
File metadata
- Download URL: ninetysix-0.0.5-py3-none-any.whl
- Upload date:
- Size: 29.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5c3d216c7b60605bfc67ded817e36741dafe2f8d73bbd6faf22c140617db25a
|
|
| MD5 |
632031a9c34ce7960df65dbdffedf573
|
|
| BLAKE2b-256 |
c0a35a3727ef07968abf5050625a0320fad29f37fdb30d0091d6c4e51d912d15
|