Browse code

Don't import stats::plogis

Need to use the S4 generic `plogis()` from DelayedArray. It's default method is `stats::plogis()`, so it does the right thing.

Peter Hickey authored on 28/06/2018 16:27:46
Showing 2 changed files

... ...
@@ -19,7 +19,7 @@ importFrom(BiocGenerics, "anyDuplicated", "cbind", "colnames",
19 19
 importFrom(stats, "approxfun", "fisher.test", "ppoints",
20 20
            "predict", "preplot", "qchisq",
21 21
            "qnorm", "qqplot", "qunif", "cov2cor",
22
-           "plogis", "setNames")
22
+           "setNames")
23 23
 importFrom(graphics, "abline", "axis", "layout", "legend", "lines",
24 24
            "mtext", "par", "plot", "points", "polygon", "rect", "rug", "text")
25 25
 import(parallel)
... ...
@@ -341,8 +341,6 @@ BSmooth <- function(BSseq,
341 341
 
342 342
 # TODOs ------------------------------------------------------------------------
343 343
 
344
-# TODO: The @trans slot isn't getting correctly set (it's using stats::plogis
345
-#       instead of DelayedArray::plogis).
346 344
 # TODO: Use the logging facilities of BiocParallel. This is a longterm goal.
347 345
 #       For example, we could set custom messages within .BSmooth() using the
348 346
 #       futile.logger syntax; see the BiocParalell vignette 'Errors, Logs and