Skip to content

Commit 86d59ac

Browse files
committed
fix(NAMESPACE): import methods::is
1 parent 66cad2d commit 86d59ac

7 files changed

Lines changed: 11 additions & 1 deletion

File tree

DESCRIPTION

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: iscream
22
Title: Integrating Single-Cell Results for Exploring and Analyzing Methylation
3-
Version: 0.1.0.9000
3+
Version: 0.1.0
44
Authors@R: c(
55
person("James", "Eapen", email = "james.eapen@vai.org", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-6016-3598")),
66
person("Jacob", "Morrison", email = "jacob.morrison@vai.org", role = c("aut"), comment = c(ORCID = "0000-0001-8592-4744")),
@@ -27,6 +27,7 @@ Imports:
2727
Rcpp,
2828
Matrix,
2929
data.table,
30+
methods,
3031
parallelly,
3132
stringfish
3233
Suggests:
@@ -43,3 +44,4 @@ Config/testthat/edition: 3
4344
NeedsCompilation: yes
4445
OS_type: unix
4546
SystemRequirements: htslib: htslib-devel (rpm) or libhts-dev (deb)
47+
biocViews: DataImport, DNAMethylation, Sequencing, Software

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ importFrom(data.table,set)
2727
importFrom(data.table,setDT)
2828
importFrom(data.table,setnames)
2929
importFrom(data.table,tstrsplit)
30+
importFrom(methods,is)
3031
importFrom(parallel,mclapply)
3132
importFrom(parallelly,availableCores)
3233
importFrom(stats,setNames)

R/make_bsseq_mat.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#' the data.
3838
#'
3939
#' @importFrom Matrix drop0
40+
#' @importFrom methods is
4041
#'
4142
#' @export
4243
#' @examples

R/make_mat.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#' "start", and "end" columns.
3434
#'
3535
#' @importFrom Matrix drop0
36+
#' @importFrom methods is
3637
#'
3738
#' @export
3839
#' @examples

R/summarize_meth_regions.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
#' <https://arma.sourceforge.net/docs.html#stats_fns> for futher details on the
4343
#' supported functions
4444
#'
45+
#' @importFrom methods is
46+
#'
4547
#' @return A data.frame
4648
#'
4749
#' @export

R/summarize_regions.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@
4141
#'
4242
#' @return A data.frame
4343
#'
44+
#' @importFrom methods is
45+
#'
4446
#' @export
4547
#'
4648
#' @examples

R/tabix.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
#' @importFrom parallel mclapply
5252
#' @importFrom tools file_path_sans_ext
5353
#' @importFrom stats setNames
54+
#' @importFrom methods is
5455
#' @return A data frame or `GRanges` if the input was `GRanges`.
5556
#'
5657
#' @export

0 commit comments

Comments
 (0)