library("GSE84920.parser")
path <- system.file("extdata", package = "GSE84920.parser", mustWork = TRUE)
file <- file.path(path, "GSM2254215_ML1.rows=1-1000.percentages.txt.gz")
data <- read_percentages(file)
print(data)
columns <- c("hg19_frac", "inner_barcode", "outer_barcode")
data2 <- read_percentages(file, columns = columns)
print(data2)
stopifnot(all.equal(data2, data[, columns], check.attributes = FALSE))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.