R/BPRMeth_package.R

Defines functions .onLoad

#' @title \code{BPRMeth}: Extracting higher order methylation features
#'
#' @description Higher order methylation features for clustering and prediction
#'   in epigenomic studies
#' @docType package
#' @name BPRMeth
#'
#' @return BPRMeth main package documentation.
#'
#' @author C.A.Kapourani \email{C.A.Kapourani@@ed.ac.uk}
#'
#' @rawNamespace importFrom(magrittr,"%>%")
#' @rawNamespace importFrom(data.table,":=")
#' @import GenomicRanges ggplot2
#' @importFrom stats pnorm dbinom dnorm
#' @importFrom Rcpp evalCpp
#' @importFrom cowplot plot_grid
#' @useDynLib BPRMeth
#'
.datatable.aware <- TRUE
NULL
#> NULL


.onLoad <- function(libname = find.package("BPRMeth"), pkgname = "BPRMeth"){
    # CRAN Note avoidance
    if (getRversion() >= "2.15.1")
        utils::globalVariables(
            # sample file names from taxstats
            c(# we use the magrittr pipe
                "."
            )
        )
    invisible()
}

Try the BPRMeth package in your browser

Any scripts or data that you put into this service are public.

BPRMeth documentation built on Nov. 8, 2020, 5:54 p.m.