Skip to content

Commit 484d181

Browse files
committed
.
1 parent 183cdf4 commit 484d181

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

Contents.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
% scGEAToolbox - Single-Cell Gene Expression Analysis Toolbox
2-
% Version 25.8.0 12-Aug-2025
2+
% Version 25.8.1 13-Aug-2025
33
%
44
% Functions
55
% cdgea - CDGEA - Change working directory to the scGEAToolbox folder
@@ -54,7 +54,7 @@
5454
% sc_readparsebio - SC_READPARSEBIO Read ParseBio matrix + feature + cell metadata
5555
% sc_readrdsfile - Read Seurat/RDS file
5656
% sc_readtsvfile - Read TSV/TXT file
57-
% sc_rmdugenes - Remove genes with duplicate name - Optimized version
57+
% sc_rmdugenes - sc_rmdugenes is a function.
5858
% sc_rmmtcells - Remove cells with high mtDNA ratio
5959
% sc_rmmtgenes - Remove mt-genes
6060
% sc_scatter - SC_SCATTER Single-cell Gene Expression Analysis Toolbox Graphical User Interface.

doc/helptoc.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<toc version="2.0">
33
<tocitem target="scgeatoolbox_product_page.html">
4-
scGEAToolbox v25.8.0
4+
scGEAToolbox v25.8.1
55
<!-- tocitem target="GettingStarted.mlx" image="HelpIcon.GETTING_STARTED">
66
Getting Started
77
</tocitem -->

sc_rmdugenes.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525
% Map each original row index to its unique-gene index
2626
row = group_idx(row);
2727
% Sum duplicates directly into sparse matrix
28-
X = sparse(row, col, val, nGenes, nCells);
28+
if isMATLABReleaseOlderThan('R2025a')
29+
X = sparse(row, col, val, nGenes, nCells);
30+
else
31+
X = single(sparse(row, col, val, nGenes, nCells)); % lower memory in R2025a+
32+
end
2933
else
3034
% Dense case: loop over columns, group sum
3135
X_new = zeros(nGenes, nCells, class(X));

scgeatoolApp.mlapp

282 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)