Skip to content
Prev 4161 / 21312 Next

[Bioc-devel] Recent issue with plot method dispatch

Hello,

thanks for following up on this, Martin. Indeed the problem was the 
missing S4 generic for "plot" was the problem. For some reason, the most 
recent version of R requires to declare this explicitly or to import the 
generic "plot" from another package. While before, I think that such a 
generic was created automatically when one defined a "plot" method for a 
S4 class.

The previous example:
library("girafe")
example(plotAligned)

actually works if you add a 'setGeneric("plot")' before calling 
'example(plotAligned)'.

I have added this to the development version of 'girafe'. It's 
unfortunate that such changes to R can also break the release version 
but since the release package is there from previous build versions and 
the next release will be soon, it's probably not worth to make any major 
efforts there.

Cheers,
Joern
On 03/13/2013 08:32 PM, Martin Morgan wrote: