-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathNEWS
More file actions
48 lines (30 loc) · 1.45 KB
/
NEWS
File metadata and controls
48 lines (30 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
CHANGES IN VERSION 0.56.0
-------------------------
BUG FIXES
o Fix updateObject() infinite recursion on an environment that contains
itself.
o Small tweak to updateObject(<data.frame>).
CHANGES IN VERSION 0.54.0
-------------------------
NEW FEATURES
o Add longForm() S4 generic.
See https://github.com/waldronlab/MultiAssayExperiment/issues/333 for
some context.
o Add paste2() S4 generic, with methods defined for ordinary vectors
and arrays. Also add add_prefix() and add_suffix(), two simple wrappers
around paste2() provided for convenience and code readability.
o Define setequal() S4 generic with generics::setequal as default method.
SIGNIFICANT USER-VISIBLE CHANGES
o Add CRAN package generics to Depends field. The default methods for
S4 generics union(), intersect(), and setdiff() now are
generics::union(), generics::intersect(), and generics::setdiff(),
respectively. See '?BiocGenerics::setops' for more information.
CHANGES IN VERSION 0.52.0
-------------------------
NEW FEATURES
o Define the OutOfMemoryObject class (VIRTUAL class with no slots).
o Add S4 generic containsOutOfMemoryData() and implement various methods.
See '?containsOutOfMemoryData' for the details.
o Add S4 generic saveRDS() and a default method that is just a thin wrapper
around base::saveRDS() that issues a warning if the object to serialize
contains out-of-memory data.