Skip to content

Commit

Permalink
Updated the NEWS file, bumped the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed May 1, 2024
1 parent 50fe724 commit 6d23ede
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# scran.js news

## 3.0.2

**New**

- Added the `initializeSparseMatrixFromHdf5DenseArray()` and `initializeSparseMatrixFromHdf5SparseMatrix()` functions,
which exposes the internals used by the `initializeSparseMatrixFromHdf5()` function.
These new functions give the user more control over the construction of sparse matrices from HDF5 files.

**Changes**

- Protected `cbindWithNames()` from weird names.
Null names are ignored, allowing us to safely handle missing gene symbols.
When names are duplicated, we explicitly keep only the first occurrence;
this is more intuitive than the old (and undocumented) behavior of keeping only the last occurrence.
The order of names from the first matrix is preserved in the final intersection, which should reduce the amount of reordering.

## 3.0.1

**Changes**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scran.js",
"version": "3.0.1",
"version": "3.0.2",
"description": "Single cell RNA-seq analysis in Javascript",
"license": "MIT",
"main": "main/index.js",
Expand Down

0 comments on commit 6d23ede

Please sign in to comment.