Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
Added `rd.plot.plot_well_metadata` to make nice plots corresponding
to well metadata specified as a YAML file.

Closes #7
  • Loading branch information
meson800 committed Apr 21, 2023
1 parent e1382b5 commit f640944
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 197 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.0] - 2023-04-21
### Added
- `rd.plot.plot_well_metadata` to make nice plots corresponding to well metadata specified as a YAML file.

## [0.3.0] - 2023-03-01
### Added
- `rd.flow.load_groups_with_metadata` loads files from several folders (groups, e.g. corresponding to plates) into a single dataframe
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# rushd
[![Stable documentation](https://img.shields.io/badge/Documentation-stable-blue)](https://gallowaylabmit.github.io/rushd/en/main/)
[![PyPI-downloads](https://img.shields.io/pypi/dm/rushd)](https://pypi.org/project/rushd)
[![PyPI-version](https://img.shields.io/pypi/v/rushd)](https://pypi.org/project/rushd)
[![PyPI-license](https://img.shields.io/pypi/l/rushd)](https://pypi.org/project/rushd)
Expand All @@ -24,7 +25,8 @@ Simply import `rushd`!
import rushd as rd
```

## Complete Examples
## Documentation
See the documentation available at https://gallowaylabmit.github.io/rushd

## Developer install
If you'd like to hack locally on `rushd`, after cloning this repository:
Expand All @@ -46,12 +48,9 @@ having to re-install after each update.
## Changelog
See the [CHANGELOG](CHANGELOG.md) for detailed changes.
```
## [0.3.0] - 2023-03-01
## [0.4.0] - 2023-04-21
### Added
- `rd.flow.load_groups_with_metadata` loads files from several folders (groups, e.g. corresponding to plates) into a single dataframe
### Modified
- `rd.flow.moi` properly generates plots of MOI vs fraction infected for checking calculation accuracy
- `rd.well_mapper` properly handles metadata concatenation
- `rd.plot.plot_well_metadata` to make nice plots corresponding to well metadata specified as a YAML file.
```

## License
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setuptools.setup(
name="rushd",
version="0.3.0",
version="0.4.0",
author="Christopher Johnstone, Kasey Love, Conrad Oakes",
author_email="meson800@gmail.com",
description="Package for maintaining robust, reproducible data management.",
Expand All @@ -23,12 +23,13 @@
"Bug Tracker": "https://github.com/GallowayLabMIT/rushd/issues",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
Expand Down
189 changes: 0 additions & 189 deletions tests/test_plot.ipynb

This file was deleted.

0 comments on commit f640944

Please sign in to comment.