Skip to content

Commit

Permalink
Update Changelog and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
const-ae committed Dec 10, 2024
1 parent 691dada commit 1525fe9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning][].

## [Unreleased]

# [0.3.1]

- Fix documentation of `cond()` return type and handle pd.Series in
`model.predict()` (#5, thanks Mark Keller)

## [0.3.0]

- Depend on `formulaic_contrast` package
Expand Down
5 changes: 5 additions & 0 deletions notebooks/check_implementation.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ print(model)
```


```{python}
ctrl_pred = model.predict(new_condition=model.cond(label="ctrl"))
model.cond(label = "stim") - model.cond(label = "ctrl")
```

```{python}
model.embedding.shape
model.adata
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 @@ requires = ["hatchling"]

[project]
name = "pyLemur"
version = "0.3.0"
version = "0.3.1"
description = "A Python implementation of the LEMUR algorithm for analyzing multi-condition single-cell RNA-seq data."
readme = "README.md"
requires-python = ">=3.10"
Expand Down

0 comments on commit 1525fe9

Please sign in to comment.