Skip to content

Commit 22ea37c

Browse files
authored
Fix bug sanitizing empty data frame like objects. (#63)
1 parent b955a7f commit 22ea37c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Changelog
22

3-
## Version 0.7.0 - 0.7.2
3+
## Version 0.7.0 - 0.7.3
44

55
- All dependencies are now listed under optional, except for numpy and biocutils.
66
- Pin the version of byteme.
77
- Fix an issue when trying to access shape of the `MatrixWrapper` objects.
8+
- Fix bug sanitizing empty data frame like objects.
89

910
## Version 0.6.1
1011

src/rds2py/read_se.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ def _sanitize_empty_frame(frame, nrows):
1919

2020
return BiocFrame(number_of_rows=nrows)
2121

22+
return frame
23+
2224

2325
def _sanitize_assays(assays):
2426
res = {}

0 commit comments

Comments
 (0)