File tree Expand file tree Collapse file tree 5 files changed +26
-2
lines changed
Expand file tree Collapse file tree 5 files changed +26
-2
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 44 push :
55 branches : [master]
66 pull_request :
7- branches : [master]
87
98jobs :
109 build :
Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ python_requires = >=3.9
4949# For more information, check out https://semver.org/.
5050install_requires =
5151 importlib-metadata; python_version<"3.8"
52- summarizedexperiment>=0.4.5
52+ summarizedexperiment>=0.5.1
5353
5454[options.packages.find]
5555where = src
Original file line number Diff line number Diff 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 <<#####
You can’t perform that action at this time.
0 commit comments