knitr::opts_chunk$set(error=FALSE, warning=FALSE, message=FALSE, cache=TRUE)

Introduction

One of my favorite movies of all time is Castle in the Sky.

write(file="chipseq.log", paste(as.character(Sys.time()), runif(1)), append=TRUE)
readLines("chipseq.log")

Method

I'm a big sucker for airships and floating stuff, and the soundtrack is stellar.

X <- rnorm(1000)
summary(X)

Results

Did you know that the bad guy was voiced by Mark Hamill in the English dub?

library(SummarizedExperiment)
se <- SummarizedExperiment(list(counts=matrix(runif(1000), ncol=10)))
se$blah <- sample(LETTERS, ncol(se))
se

Discussion

I actually have a Castle in the Sky T-shirt, though it's subtle enough that most people don't get the reference.

saveRDS(se, file="castle_in_the_sky.rds")

Session information

sessionInfo()


LTLA/BiocWorkCache documentation built on May 10, 2019, 1:21 p.m.