Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Mar 16, 2018
1 parent f401ac7 commit bd6a3e0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
### 0.7.7 (2018-03-16) ###

New features

* Implementation of unsorted (index-free) loading
* `cooler.io.create_from_unsorted` takes an iterable of pixel dataframe chunks that need not be properly sorted.
* Use input sanitization procedures for pairs `sanitize_records` and binned data `sanitize_pixels` to feed data to `create_from_unsorted`. #87 #108 #109
* The `cooler load` command is now index-free: unsorted `COO` and `BG2` input data can be streamed in. #90. This will soon be implemented as an option for loading pairs as well.
* Prevent `cooler balance` command from exiting with non-zero status upon failed convergence using convergence error policies. #93
* Improve the `create` API to support pandas read_csv-style `columns` and `dtype` kwargs to add extra value columns or override default dtypes. #108
* Experimental implementation of trans-only balancing. #56

Bug fixes

* Fix argmax deprecation. #99


### 0.7.6 (2017-10-31) ###
New features

Expand Down
2 changes: 1 addition & 1 deletion cooler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
import logging
__version__ = '0.7.7-dev'
__version__ = '0.7.7'
__format_version__ = 2
_logger = None

Expand Down

0 comments on commit bd6a3e0

Please sign in to comment.