Skip to content

Releases: srivarra/annsel

v0.1.2

06 Jan 00:06
448ddfd

Choose a tag to compare

Changes

v0.1.1

10 Apr 07:44
d91cce3

Choose a tag to compare

Small bugfix for getting narwhals column names within nw.col(*names). Updated CI.

Changes

  • 👽️ Nonlocals of a nonlocal??? sure why not @srivarra (#54)

v0.1.0

11 Mar 05:13
4390be9

Choose a tag to compare

Changes

🚀 Features

  • Look at names in closure for nw.Expr instead of subclassing it. @srivarra (#50)

This release features better group by support and improved stability w.r.t Narwhal's Expr. Instead of subclassing nw.Expr, we have simplified a significant amount by looking at the closure to get column names for group by's. Group By's now have a repr. Here is an example below:

first_group = next(adata.an.group_by(
    obs=an.col(["Cell_label"]),
    var=an.col(["feature_type"]),
    copy=False
)

Note that if copy=False, the GroupByAnnData object will be a view of the original AnnData object. If you want a copy, you can set copy=True.

first_group
GroupByAnnData:
  ├── Observations:
  │   └── Cell_label: Lymphomyeloid prog
  ├── Variables:
  │   └── feature_type: protein_coding
  └── AnnData:
      View of AnnData object with n_obs × n_vars = 913 × 445
      ...

v0.0.10

03 Mar 06:15
1e077aa

Choose a tag to compare

Changes

v0.0.9

18 Feb 18:45
28b441d

Choose a tag to compare

Updated internal Expression Metadata for subclassing nw.Expr for narwhals>1.27

Changes

v0.0.8

14 Feb 00:04
8bc5527

Choose a tag to compare

Changes

v0.0.7

28 Jan 00:32
578ab56

Choose a tag to compare

Changes

🐛 Bug Fixes

v0.0.6

21 Jan 03:12
11bf38c

Choose a tag to compare

Changes

🚀 Features

v0.0.5

21 Jan 02:02
de82932

Choose a tag to compare

Changes

v0.0.4

21 Dec 05:26

Choose a tag to compare

Changes

  • Fixed CI