Description Format Details Examples
Small data set for running examples
Three objects are loaded, a data frame of expression of 500 genes by
84 samples (testData
), a data frame with meta information on those
84 samples (testMeta
), and a data frame giving the GOID of the genes
in testData
.
This data is a subset of the full time course data available as
shoemaker2015
and is only provided for the
purpose of running examples, and not for biological meaning. Users should
refer to the full data set.
The rownames of testData
are RefSeq.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #code used to create data:
## Not run:
library(timecoursedata)
data(shoemaker2015)
testData<-shoemaker2015$data[1:500,]
whSamples<-which(shoemaker2015$meta$Group %in% c("C","K","M"))
testData<-testData[,whSamples]
testMeta<-droplevels(shoemaker2015$meta[whSamples,])
library(biomaRt)
ensembl = useMart("ensembl")
ensembl = useMart("ensembl")
ensembl = useDataset("mmusculus_gene_ensembl", mart=ensembl)
testGenesGO = getBM(attributes=c("go_id", "refseq_mrna"),
values=rownames(testData),
filters="refseq_mrna",
mart=ensembl)
save(list=c("testData","testMeta","testGenesGO"),file="data/exampleData.rda")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.