Skip to content

Commit bc38bb5

Browse files
committed
minor updates
1 parent aaca179 commit bc38bb5

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches: [master]
66
pull_request:
7-
branches: [master]
87

98
jobs:
109
build:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Version 0.5.1
4+
5+
- Add wrapper class methods to combine experiments by rows or columns.
6+
37
## Version 0.5.0
48

59
- chore: Remove Python 3.8 (EOL)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ python_requires = >=3.9
4949
# For more information, check out https://semver.org/.
5050
install_requires =
5151
importlib-metadata; python_version<"3.8"
52-
summarizedexperiment>=0.4.5
52+
summarizedexperiment>=0.5.1
5353

5454
[options.packages.find]
5555
where = src

src/singlecellexperiment/SingleCellExperiment.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,6 +1027,27 @@ def to_mudata(self):
10271027

10281028
return MuData(expts)
10291029

1030+
############################
1031+
######>> combine ops <<#####
1032+
############################
1033+
1034+
def relaxed_combine_rows(self, *other) -> "SingleCellExperiment":
1035+
"""Wrapper around :py:func:`~relaxed_combine_rows`."""
1036+
return relaxed_combine_rows(self, *other)
1037+
1038+
def relaxed_combine_columns(self, *other) -> "SingleCellExperiment":
1039+
"""Wrapper around :py:func:`~relaxed_combine_columns`."""
1040+
return relaxed_combine_columns(self, *other)
1041+
1042+
def combine_rows(self, *other) -> "SingleCellExperiment":
1043+
"""Wrapper around :py:func:`~combine_rows`."""
1044+
return combine_rows(self, *other)
1045+
1046+
def combine_columns(self, *other) -> "SingleCellExperiment":
1047+
"""Wrapper around :py:func:`~combine_columns`."""
1048+
return combine_columns(self, *other)
1049+
1050+
10301051

10311052
############################
10321053
######>> combine ops <<#####

0 commit comments

Comments
 (0)