... | ... |
@@ -1,3 +1,26 @@ |
1 |
+CHANGES IN VERSION 1.36.0 |
|
2 |
+------------------------- |
|
3 |
+ |
|
4 |
+NEW FEATURES |
|
5 |
+ |
|
6 |
+ o Calling saveRDS() on a SummarizedExperiment object that contains |
|
7 |
+ out-of-memory data now raises an error with a message that redirects |
|
8 |
+ the user to HDF5Array::saveHDF5SummarizedExperiment(). |
|
9 |
+ |
|
10 |
+SIGNIFICANT USER-VISIBLE CHANGES |
|
11 |
+ |
|
12 |
+ o Move documentation of constructor function SummarizedExperiment() |
|
13 |
+ from RangedSummarizedExperiment-class.Rd to SummarizedExperiment-class.Rd. |
|
14 |
+ See https://github.com/Bioconductor/SummarizedExperiment/issues/80 |
|
15 |
+ |
|
16 |
+ o Change default value of 'rowData' argument in SummarizedExperiment() |
|
17 |
+ constructor from GRangesList() to NULL. |
|
18 |
+ |
|
19 |
+BUG FIXES |
|
20 |
+ |
|
21 |
+ o Fix typos in error message from assay() and assays() setters. |
|
22 |
+ |
|
23 |
+ |
|
1 | 24 |
CHANGES IN VERSION 1.34.0 |
2 | 25 |
------------------------- |
3 | 26 |
|
... | ... |
@@ -147,15 +170,15 @@ SIGNIFICANT USER-VISIBLE CHANGES |
147 | 170 |
|
148 | 171 |
o Swap positions of arguments '...' and 'withDimnames' in assays() |
149 | 172 |
setter and getter. So now it's: |
150 |
- |
|
173 |
+ |
|
151 | 174 |
assays(x, withDimnames=TRUE, ...) |
152 | 175 |
assays(x, withDimnames=TRUE, ...) <- value |
153 | 176 |
|
154 | 177 |
o Add 'withDimnames' argument to the assay() getter/setter. So now it's: |
155 |
- |
|
178 |
+ |
|
156 | 179 |
assay(x, i, withDimnames=TRUE, ...) |
157 | 180 |
assay(x, i, withDimnames=TRUE, ...) <- value |
158 |
- |
|
181 |
+ |
|
159 | 182 |
Note that before this change, the user was able to explicitly set |
160 | 183 |
'withDimnames' when calling assay() but since this was not a formal |
161 | 184 |
argument it was forwarded to assays() via the ellipsis. Having it as |