knitr::opts_chunk$set(echo = TRUE)
ISAnalytics
can be installed quickly in different ways:
devtools
There are always 2 versions of the package active:
RELEASE
is the latest stable versionDEVEL
is the development version, it is the most up-to-date version where
all new features are introducedRELEASE version:
if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("ISAnalytics")
DEVEL version:
if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") # The following initializes usage of Bioc devel BiocManager::install(version='devel') BiocManager::install("ISAnalytics")
RELEASE:
if (!require(devtools)) { install.packages("devtools") } devtools::install_github("calabrialab/ISAnalytics", ref = "RELEASE_3_17", dependencies = TRUE, build_vignettes = TRUE)
DEVEL:
if (!require(devtools)) { install.packages("devtools") } devtools::install_github("calabrialab/ISAnalytics", ref = "devel", dependencies = TRUE, build_vignettes = TRUE)
ISAnalytics
has a verbose option that allows some functions to print
additional information to the console while they're executing.
To disable this feature do:
# DISABLE options("ISAnalytics.verbose" = FALSE) # ENABLE options("ISAnalytics.verbose" = TRUE)
Some functions also produce report in a user-friendly HTML format, to set this feature:
# DISABLE HTML REPORTS options("ISAnalytics.reports" = FALSE) # ENABLE HTML REPORTS options("ISAnalytics.reports" = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.