Confused why this is necessary, but fixes an infinite loop in S4Vectors methods dispatch in the unit tests.
... | ... |
@@ -39,6 +39,10 @@ exportMethods("$") |
39 | 39 |
exportMethods("$<-") |
40 | 40 |
exportMethods(rbind) |
41 | 41 |
import(Biostrings) |
42 |
+importFrom(BiocGenerics,NCOL) |
|
43 |
+importFrom(BiocGenerics,NROW) |
|
44 |
+importFrom(BiocGenerics,ncol) |
|
45 |
+importFrom(BiocGenerics,nrow) |
|
42 | 46 |
importFrom(Rcpp,evalCpp) |
43 | 47 |
importFrom(S4Vectors,List) |
44 | 48 |
importFrom(S4Vectors,SimpleList) |
... | ... |
@@ -220,10 +220,12 @@ setMethod('dimnames', signature = c(x = 'ContigCellDB'), function(x){ |
220 | 220 |
}) |
221 | 221 |
|
222 | 222 |
#' @rdname sub-sub-ContigCellDB-character-missing-method |
223 |
+#' @importFrom BiocGenerics nrow NROW |
|
223 | 224 |
setMethod('nrow', signature = c(x = 'ContigCellDB'), function(x){ |
224 | 225 |
nrow(x@cell_tbl) |
225 | 226 |
}) |
226 | 227 |
|
228 |
+#' @importFrom BiocGenerics ncol NCOL |
|
227 | 229 |
#' @rdname sub-sub-ContigCellDB-character-missing-method |
228 | 230 |
setMethod('ncol', signature = c(x = 'ContigCellDB'), function(x){ |
229 | 231 |
ncol(x@cell_tbl) |