Skip to content
New issue

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

add missing dependency declarations to methods and utils #2183

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ Imports:
gridExtra,
Biostrings,
ComplexHeatmap,
GenomicRanges
GenomicRanges,
methods,
utils
Depends:
Collate:
'AllClasses.R'
Expand Down
6 changes: 6 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,10 @@ export(validBSgenome)
import(data.table)
importFrom(GenomicRanges,GRanges)
importFrom(Rcpp,sourceCpp)
importFrom(methods,representation)
importFrom(methods,setClass)
importFrom(methods,setClassUnion)
importFrom(methods,setMethod)
importFrom(methods,setValidity)
importFrom(utils,packageVersion)
useDynLib(ArchR)
2 changes: 2 additions & 0 deletions R/AllClasses.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#' @useDynLib ArchR
#' @importFrom Rcpp sourceCpp
#' @importFrom GenomicRanges GRanges
#' @importFrom methods setClassUnion setClass representation setValidity setMethod
#' @importFrom utils packageVersion
#' @import data.table
NULL

Expand Down