Skip to content

Commit

Permalink
fix #179: AnnDataSet to AnnData conversion error when .X is empty.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizhang committed Oct 28, 2023
1 parent e78e083 commit 0a1cf92
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
- Fix a bug in `pp.add_tile_matrix` that causes the function to fail when the genome
contains a large number (>1000) of chromosomes.
- Fix #177: counter overflow in `pp.make_fragment_file` when duplicate reads are more than 2^16.
- Fix #178: issue a warning instead of an error when no cells pass the filter in `pp.import_data`
- Fix #178: issue a warning instead of an error when no cells pass the filter in `pp.import_data`.
- Fix #179: AnnDataSet to AnnData conversion error when `.X` is empty.
- Fix #182: compression type detection problem.

## Release 2.5.1 (released Oct 23, 2023)
Expand Down
2 changes: 1 addition & 1 deletion snapatac2-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ homepage = "https://github.com/"
keywords = ["single-cell", "biology"]

[dependencies]
anndata = { git = "https://github.com/kaizhang/anndata-rs.git", rev = "c39ee5428dfe0d1c8274a12d56241806feae0516" }
anndata = { git = "https://github.com/kaizhang/anndata-rs.git", rev = "c90e5fa1cfbc9fec0736eb475ebcc85f77125d44" }
anyhow = "1.0"
bigtools = { version = "0.2", features = ["read", "write"] }
bincode = "1.3"
Expand Down
6 changes: 3 additions & 3 deletions snapatac2-python/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions snapatac2-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ keywords = ["single-cell", "biology"]
[dependencies]
snapatac2-core = { path = "../snapatac2-core" }
#snapatac2-core = { git = "https://github.com/kaizhang/SnapATAC2.git", rev = "b526e4907a01c46821716545622394518348a2ac" }
anndata = { git = "https://github.com/kaizhang/anndata-rs.git", rev = "c39ee5428dfe0d1c8274a12d56241806feae0516" }
anndata-hdf5 = { git = "https://github.com/kaizhang/anndata-rs.git", rev = "c39ee5428dfe0d1c8274a12d56241806feae0516" }
pyanndata = { git = "https://github.com/kaizhang/anndata-rs.git", rev = "c39ee5428dfe0d1c8274a12d56241806feae0516" }
anndata = { git = "https://github.com/kaizhang/anndata-rs.git", rev = "c90e5fa1cfbc9fec0736eb475ebcc85f77125d44" }
anndata-hdf5 = { git = "https://github.com/kaizhang/anndata-rs.git", rev = "c90e5fa1cfbc9fec0736eb475ebcc85f77125d44" }
pyanndata = { git = "https://github.com/kaizhang/anndata-rs.git", rev = "c90e5fa1cfbc9fec0736eb475ebcc85f77125d44" }
extsort = "0.4"
anyhow = "1.0"
bed-utils = { git = "https://github.com/kaizhang/bed-utils.git", rev = "d06f2b4ff189c64bc0d3f7054f4ee8d0797368ca" }
Expand Down

0 comments on commit 0a1cf92

Please sign in to comment.