Re: [Rd] Regarding the recent changes to @<-

2013-01-14 Thread François Michonneau
Hello Martin, Below is a reduced version of our code that doesn't produce an error in r61643 but does in 2.15.2. Thanks, -- François setClass("phylo4", representation(edge="matrix", annote="list"), prototype = list(edge = matrix(nrow = 0, ncol = 2

Re: [Rd] Regarding the recent changes to @<-

2013-01-14 Thread François Michonneau
Thanks John. Just to clarify further my previous message, the other slots were returning error messages when provided with objects of the incorrect class, but not the slot that was supposed to be a list. Cheers, -- François On Mon, Jan 14, 2013 at 12:54 PM, John Chambers wrote: > Thank

[Rd] Regarding the recent changes to @<-

2013-01-13 Thread François Michonneau
Hello all, In one of the packages (phylobase) I'm contributing to, we define a class as follows: setClass("phylo4", representation(edge = "matrix", edge.length = "numeric", label = "character", edge.label = "charac