Re: [Bioc-devel] Empty DataFrame Causes SummarizedExperiment Constructor Error

2023-05-20 Thread Hervé Pagès
On 5/17/23 23:59, Robert Castelo wrote: not sure whether this is relevant, but I observed that while an empty base R 'data.frame()' constructor gives zero-length character vectors for row and column names, the empty 'DataFrame()' constructor gives also a zero-length character vector for

Re: [Bioc-devel] issue with .local() hack used in S4 methods

2023-05-20 Thread Hervé Pagès
On 5/19/23 14:37, Martin Maechler wrote: Could you file a bug at R's bugzilla? {I know we have too many open bugs there, notably related to S4, but still you'd do a service to the R community.} Done: https://bugs.r-project.org/show_bug.cgi?id=18538 Cheers, H. -- Hervé Pagès

Re: [Bioc-devel] issue with .local() hack used in S4 methods

2023-05-20 Thread Hervé Pagès
oops, wrong list sorry. I meant to send this to the R-devel list. Done now. @Martin FWIW I worked around this by keeping the ellipsis in the arg list of the method:  > setMethod("foo", "raw", function(x, y=-5, ..., z=22) y) > selectMethod("foo", "raw") Method Definition: function (x, ..., z