Skip to content

Commit

Permalink
bump to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
js2264 committed Oct 25, 2024
1 parent 2e3e2f3 commit f3c1a26
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
22 changes: 17 additions & 5 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
## Unreleased

*Date: On going*
## [v0.3.0](https://github.com/js2264/momics/releases/tag/0.4.0)

*Date: 2024-10-25*

### API changes

* All ranges are now 0-based half-open intervals, as in `pyranges` and BED files.
* `MultiRangeQuery` -> `MomicsQuery`.
* `manifest` method to output the whole configuration of a `Momics` instance.
* `consolidate` method to consolidate a `Momics` repository.
* No submodules are imported in `__init__.py` anymore.
* All export functions are now `Momics` methods.
* All ingestion methods for `Momics` now start with `ingest_*`.

### New features

* `aggregate` submodule to merge dictionaries of partial coverage tracks (over pyranges) into genome-wide tracks.
* Relatively basic `ChromNN` CNN `TensorFlow` model.
* `MomicsDataset` class to pass data to `TensorFlow` models.
* `MomicsStreamer` class to stream data from `Momics` repositories.
Expand All @@ -17,14 +24,17 @@

### Enhancements

* CLI is now partially based on `cloup` to improve user experience.
* `seq(label = "...)` now returns the sequence for an entire chromosome.
* `tracks(label = "...)` now returns the genome-wide track.
* `MultiRangeQuery` queries now rely on `pyranges` for range queries.
* `MultiRangeQuery` queries can extract only a subset of the tracks.
* `MomicsQuery` queries now rely on `pyranges` for range queries.
* `MomicsQuery` queries can extract only a subset of the tracks.
* `add_track` and `remove` methods for `Momics` class.
* `to_npz` and `to_json` methods for `MultiRangeQuery` class.
* `to_npz` and `to_json` methods for `MomicsQuery` class.

### Maintenance

* Support jupyter notebooks in documentation.
* Add changelog.
* Improve docs.
* Logging system updates.
Expand All @@ -33,6 +43,8 @@

### Bug fixes

* Ensure that queries are done per chromosome, even if provided ranges are stranded.
* All ranges are now 0-based half-open intervals, as in `pyranges` and BED files.
* Parallelization for queries only relies on `TileDB` internal system.
* Filters used in `Momics` tables.
* Removal of `Azure`-hosted repositories.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "momics"
version = "0.3.0"
version = "0.4.0"
description = "A package to create and manage genome-related TileDB arrays"
requires-python = ">=3.8"
license = {text = "CC BY-NC 4.0"}
Expand Down

0 comments on commit f3c1a26

Please sign in to comment.