suppressPackageStartupMessages({ suppressMessages({ library(lihc450k) }) })
The Illumina 450k methylation data for TCGA cohorts are challenging to serialize and load. This vignette illustrates use of remote HDF5 in the HSDS (HDF Object Store) paradigm.
Briefly, use example(loadLIHC450k) to see how it works. For this example
assay(lim)
evaluates to a DelayedArray
wrapping the numerical data in the store. On the other hand
lim2 = loadLIHC450k(useHSDS=FALSE)
replaces the step of connecting to HDF Object Store with a retrieval of
1.2GB of HDF5, and lodges this in a BiocFileCache. assay(lim2)
then
evaluates to the DelayedArray wrapping the local HDF5 array.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.