Skip to content
Prev 6695 / 21312 Next

[Bioc-devel] BioC 3.0 CHECK ERROR

On 11/26/2014 10:03 AM, Dan Tenenbaum wrote:
The path to Matrix is

flowCHIC
   Imports: vegan
     Imports: mgcv
       Imports: Matrix

vegan was updated on

 > packageDescription("vegan")[c('Version', 'Date/Publication')]
$Version
[1] "2.2-0"

$`Date/Publication`
[1] "2014-11-17 11:35:34"

and changed (based on comparison with the last archived version, 2.0-10 from 
http://cran.fhcrc.org/src/contrib/Archive/vegan) to move Matrix from Suggests: 
to Imports:.

I think it's a long-standing issue in R; I can reproduce it using the EBImage / 
Matrix example in R 2.15, for instance (although oddly I had to go through some 
mild histrionics to get EBImage to compile). Specifically, it seems like a patch 
that Michael just applied in R-devel (!), plus

Index: MethodsListClass.R
===================================================================
--- MethodsListClass.R	(revision 67060)
+++ MethodsListClass.R	(working copy)
@@ -353,7 +353,7 @@
                function(x, digits) {
                    value <- x
                    x <- x at .Data
-                  value at Data  <- callGeneric()
+                  value at .Data  <- callGeneric()
                    value
                })
      ## some methods for nonStructure, ensuring that the class and slots


Martin