Skip to content

Commit

Permalink
v2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizhang committed Dec 13, 2024
1 parent 5156db7 commit 5a87c5a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## Nightly (unreleased)
## Release 2.8.0 (released December 13, 2024)

### Features:

Expand Down
7 changes: 6 additions & 1 deletion snapatac2-core/src/feature_count/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ use polars::frame::DataFrame;

use crate::genome::ChromSizes;

/// Key for storing single-end fragment data in the `.obsm` matrix.
pub const FRAGMENT_SINGLE: &str = "fragment_single";

/// Key for storing paired-end fragment data in the `.obsm` matrix.
pub const FRAGMENT_PAIRED: &str = "fragment_paired";
pub const BASE_VALUE: &str = "_values";

/// Key for storing base values in the `.obsm` matrix.
pub const BASE_VALUE: &str = "__values__";

/// The `SnapData` trait represents an interface for reading and
/// manipulating single-cell assay data. It extends the `AnnDataOp` trait,
Expand Down
2 changes: 1 addition & 1 deletion snapatac2-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snapatac2"
version = "2.8.0-dev0"
version = "2.8.0"
edition = "2021"
authors = ["Kai Zhang <[email protected]>"]
description = "Rust APIs"
Expand Down

0 comments on commit 5a87c5a

Please sign in to comment.