-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsigminer.R
32 lines (30 loc) · 1.18 KB
/
sigminer.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#' sigminer: Extract, Analyze and Visualize Signatures for Genomic Variations
#'
#' - Author: [Shixiang Wang](https://shixiangwang.github.io/home/) (<[email protected]>)
#' - Please go to <https://shixiangwang.github.io/sigminer-doc/> for full vignette.
#' - Please go to <https://shixiangwang.github.io/sigminer/reference/index.html>
#' for organized documentation of functions and datasets.
#' - Result visualization for [MAF] is provide by **maftools** package,
#' please read its [vignette](https://bioconductor.org/packages/release/bioc/vignettes/maftools/inst/doc/maftools.html).
#'
#'
#' @importFrom dplyr progress_estimated
#' @importFrom future plan
#' @importFrom furrr future_pmap
#' @importFrom graphics hist
#' @importFrom grDevices colorRampPalette pdf dev.off
#' @importFrom stats as.formula t.test fisher.test pairwise.table quantile setNames dist kmeans
#' @importFrom utils data download.file head packageDescription
#' @import NMF
#' @import ggplot2
#' @import cli
#' @keywords internal
"_PACKAGE"
## usethis namespace: start
#' @useDynLib sigminer, .registration = TRUE
## usethis namespace: end
NULL
## usethis namespace: start
#' @importFrom Rcpp sourceCpp
## usethis namespace: end
NULL