Displaying 1 result from an estimated 1 matches for "categorysize".
Did you mean:
categorize
2009 Sep 17
1
Why S4 method is not visible from another package?
...e this is something obvious, I seem to be incapable of
understanding how S4 works.
So, in package 'A' I defined a "summary" method for my class:
setMethod("summary", signature(object="ListHyperGResult"),
function(object, pvalue=pvalueCutoff(object), categorySize=NULL) {
"whatever"
})
"ListHyperGResult" has a subclass, "GOListHyperGResult":
setClass("GOListHyperGResult",
representation=representation(conditional="logical"),
contains="ListHyperGResult",...