Skip to content

Releases: open2c/bioframe

v0.6.4

06 Apr 14:37
Compare
Choose a tag to compare

Maintenance

  • Migrate from setuptools pkg_resources to importlib.resources by @nvictus in #194
  • Use importlib.metadata for versioning by @nvictus in #195

Bug fixes

New Contributors

Full Changelog: v0.6.3...v0.6.4

v0.6.3

12 Mar 01:09
Compare
Choose a tag to compare

Bug fixes

  • Prevent dropout from closest in some cases of left intervals with no neighbors by @agalitsyna in #185
  • Fix overlap returning float indexes causing failing tests (numpy v1.22.4, pandas v1.5.2) by @agalitsyna in #185

Full Changelog: v0.6.2...v0.6.3

v0.6.2

08 Feb 13:43
Compare
Choose a tag to compare

What's Changed

Fixes

Full Changelog: v0.6.1...v0.6.2

v0.6.1

08 Jan 22:06
Compare
Choose a tag to compare

Default behavior of ensure_nullable option in overlap was modified to minimize the possibility of regressions in libraries that depend on legacy behavior.

  • The new option was renamed ensure_int and is True by default. It ensures that output coordinate columns are always returned with an integer dtype, as was the case in prior versions. This is achieved by converting columns having non-nullable NumPy dtypes to Pandas nullable ones in the specific case where the result of an outer join generates missing values; otherwise, column dtypes are preserved unchanged in the output.
  • Unlike previous minor versions of bioframe, the nullable dtype chosen will have the same underlying type as the corresponding column from the input (i.e, an input dataframe using np.uint32 start coordinates may yield a pd.UInt32 start column in the output).
  • This behavior can be turned off by setting ensure_int to False, in which case outer joins on dataframes using NumPy dtypes may produce floating point output columns when missing values are introduced (stored as NaN), following the native casting behavior of such columns.

v0.6.0

05 Jan 00:50
Compare
Choose a tag to compare

API changes:

  • overlap: In previous versions, output coordinate columns were always converted to Pandas "nullable" Int64DType before returning. In the interest of flexibility, memory efficiency, and least surprise, the coordinate columns returned in the output dataframe now preserve dtype from the input dataframes, following native type casting rules if missing data are introduced. We introduce the ensure_nullable argument to force Pandas nullable dtypes in the output coordinates. See the docs for more details. (#178)

Bug fixes:

  • Fixed coverage with custom cols1 (#170)

Documentation:

  • Added contributing guidelines and NumFOCUS affiliation.
  • Updated README and added CITATION.cff file.
  • Updated performance benchmarks.

v0.5.1

08 Nov 15:11
9a3e81f
Compare
Choose a tag to compare

Bug fixes

  • Series are treated like dict in make_chromarms

v0.5.0

06 Oct 02:22
Compare
Choose a tag to compare

API changes:

  • New builtin curated genome assembly database (metadata, chromsizes, cytobands):
    • bioframe.list_assemblies()
    • bioframe.assembly_info()
  • New UCSC RGB color converter utility #158
  • Options added to pair_by_distance

Bug fixes:

  • Make expand throw an error if both pad and scale are passed (#148)
  • Fixes to bioframe.select query interval semantics (#147)

Maintenance:

  • Migrate to hatch build system and pyproject.toml
  • Various refactorings

v0.4.1

22 Apr 15:37
Compare
Choose a tag to compare

Bug fixes:

  • Fix bug introduced in the last release in select and select_* query interval semantics. Results of select are now consistent with the query interval being interpreted as half-open, closed on the left.

v0.4.0

23 Mar 22:10
Compare
Choose a tag to compare

API changes:

  • New strand-aware directionality options for closest() via direction_col #129.
  • New index-based range query selectors on single bioframes to complement select() #128:
    • select_mask() returns boolean indices corresponding to intervals that overlap the query region
    • select_indices() returns integer indices corresponding to intervals that overlap the query region
    • select_labels() returns pandas label indices corresponding to intervals that overlap the query region

Bug fixes:

  • Import fixes in sandbox
  • Relax bioframe validator to permit using same column as start and end (e.g. point variants).

v0.3.3

01 Mar 02:22
fb1ba88
Compare
Choose a tag to compare

Bug fixes

  • fixed a couple functions returning an error instance instead of raising
  • fetch_mrna link fixed