ERCC spike-in data annotated directly from Life Tech:
URL <- "https://tools.lifetechnologies.com/content/sfs/manuals/cms_095046.txt"
ERCC_raw <- read.table(URL, sep="\t", header=T)
ERCC_raw <- ERCC_raw[ , 3:5]
names(ERCC_raw) <- c("subgroup","concentration.mix1","concentration.mix2")
save(ERCC_raw, file="data/ERCC_annotated.rda", compress="xz")
1 |
1 2 3 | data(ERCC_annotated)
split(rownames(ERCC_annotated), ERCC_annotated$subgroup)
split(ERCC_annotated$concentration.mix1 / ERCC_annotated$concentration.mix2, ERCC_annotated$subgroup)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.