Displaying 1 result from an estimated 1 matches for "list_of_object".
Did you mean:
list_of_objects
2014 Feb 19
0
dispatch on "c" method when passing named arguments
Hi,
Many S4 objects in Bioconductor support "combining" via a "c" method.
A common use case is to combine a collection of S4 objects stored in
a list with the following idiom:
do.call("c", list_of_objects)
For many users this doesn't return what they expect though, because
their 'list_of_objects' is a named list and this seems to "break"
dispatch if the "c" method is defined for a parent class.
Here is an example:
setClass("A", representation(aa="...