-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eda7a2e
commit e457826
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#' @importFrom BiocGenerics relist | ||
#' @importFrom data.table as.data.table melt.data.table | ||
#' @importFrom doParallel registerDoParallel | ||
#' @importFrom doRNG %dorng% | ||
#' @importFrom EnvStats ebeta | ||
#' @importFrom ExtDist eBeta pBeta | ||
#' @importFrom foreach foreach | ||
#' @importFrom gamlss gamlss gamlss.control | ||
#' @importFrom gamlss.dist pBEINF | ||
#' @importFrom GenomicRanges mcols `mcols<-` granges reduce findOverlaps | ||
#' @importFrom IRanges subsetByOverlaps | ||
#' @importFrom matrixStats rowMedians rowIQRs | ||
#' @importFrom methods as is | ||
#' @importFrom parallel detectCores makeCluster stopCluster | ||
#' @importFrom S4Vectors queryHits | ||
#' @importFrom stats median na.omit rbeta pbeta | ||
#' @importFrom utils head tail | ||
## #' @importFrom Rcpp sourceCpp | ||
## #' @useDynLib ramr, .registration=TRUE | ||
|
||
|
||
# internal globals, constants and helper functions | ||
# | ||
|
||
################################################################################ | ||
# Globals, unload | ||
################################################################################ | ||
|
||
utils::globalVariables(c( | ||
"chunk", "column", "ncpg", "width", "..data.samples", ":=", "alpha", "color", | ||
"size", "start" | ||
)) | ||
|
||
# .onUnload <- function (libpath) {library.dynam.unload("ramr", libpath)} | ||
|
||
################################################################################ | ||
# Constants | ||
################################################################################ | ||
|
||
# descr: ... | ||
|
||
# | ||
|
||
################################################################################ | ||
# Functions: ... | ||
################################################################################ | ||
|
||
# descr: ... | ||
# value: ... |