We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Importing data.table and dplyr cause some "function override" warnings when this package is loaded, or imported from other packages, like so:
Warning messages: 1: replacing previous import ‘data.table::last’ by ‘dplyr::last’ when loading ‘multiGSEA.shiny’ 2: replacing previous import ‘data.table::first’ by ‘dplyr::first’ when loading ‘multiGSEA.shiny’ 3: replacing previous import ‘data.table::between’ by ‘dplyr::between’ when loading ‘multiGSEA.shiny’ 4: replacing previous import ‘dplyr::combine’ by ‘multiGSEA::combine’ when loading ‘multiGSEA.shiny’
More judicially importing functions from one of the packages, or use the import/except mojo should do the trick.
The NAMESPACE file supports syntax like this:
NAMESPACE
import(PACKAGE, except=c(foo,bar))
And you can get roxygen to do that like so:
#' @rawNamespace import(PACKAGE, except = foo)
Who knew? ... this guy knew ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Importing data.table and dplyr cause some "function override" warnings when this package is loaded, or imported from other packages, like so:
More judicially importing functions from one of the packages, or use the import/except mojo should do the trick.
import/except
The
NAMESPACE
file supports syntax like this:And you can get roxygen to do that like so:
Who knew? ... this guy knew ...
The text was updated successfully, but these errors were encountered: