You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Rename `reduced_dims` to `reduced_dimensions`. Constructor accepts both these arguments for backwards compatibility.
- Additionally, SCE's constructor takes `kwargs` for future proofing any additional attributes in the upstream classes.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,22 @@
1
1
# Changelog
2
2
3
+
## Version 0.5.8
4
+
5
+
- Rename `reduced_dims` to `reduced_dimensions`. Constructor accepts both these arguments for backwards compatibility.
6
+
- Additionally, SCE's constructor takes kwargs for future proofing any additional attributes in the upstream classes.
7
+
3
8
## Version 0.5.7
9
+
4
10
- Support reading outputs from CellRanger version 3 and later in `read_tenx_mtx`.
5
11
- Handle both `genes.csv` and `features.csv` for gene annotations.
6
12
7
13
## Version 0.5.6
8
14
9
-
- Check if the column names of the alternative experiments match with the column names of the main experiment. This is the equivalent to the ``withDimnames`` parameter in the R implementation.
15
+
- Check if the column names of the alternative experiments match with the column names of the main experiment. This is the equivalent to the `withDimnames` parameter in the R implementation.
10
16
- On **getters** of alternative experiments, if `with_dim_names` is True, column names of the alternative experiment are **replaced** with the
11
-
column names of the main experiment.
17
+
column names of the main experiment.
12
18
- On **setters** of alternative experiments, if `with_dim_names` is True, column names of the alternative experiment are **checked** with the
13
-
column names of the main experiment and an Exception is raised if they do not match.
19
+
column names of the main experiment and an Exception is raised if they do not match.
14
20
15
21
## Version 0.5.1 - 0.5.5
16
22
@@ -19,7 +25,6 @@
19
25
- Add getters and setters to replace a specific alternative experiment or reduced dimension.
20
26
- Fixed an issue with numpy arrays as slice arguments. Code now uses Biocutils's subset functions to perform these operations.
0 commit comments