| farrisGeneSE | R Documentation |
Farris et al gene-level expression data
farrisGeneSE
SummarizedExperiment object with 49341 gene rows, and 24
sample columns. Sample annotations are accessed as described
for SummarizedExperiment-class
objects, using SummarizedExperiment::colData().
Gene annotations are accessed using
SummarizedExperiment::rowData().
The colData colnames are described as follows:
The major excitatory pyramidal cell types in the mouse hippocampus, CA1, CA2, CA3, and dentate gyrus (DG).
The cellular compartment within each cell type: CB (cell body) is the pyramidal cell layer; DE (dendrite) is stratum radiatum of CA1, CA2, CA3, and the molecular layer of DG.
The number assigned to each mouse.
The sample group name associated with each
CellType and Compartment.
The count data is accessed through the function assays
and has the following entries:
Median-normalized log2-transformed pseudocount
data per-gene generated by Salmon, after import using
tximport::tximport(). The log2 transformation was
log2(1+x).
The raw log2-transformed pseudocount data per-gene generated by Salmon. The log2 transformation was log2(1+x).
The rowData contains gene annotations, in this case limited to the Entrez gene symbol.
SummarizedExperiment object containing gene-level expression
data following Salmon quantitation, and import using
tximport::tximport() at the gene level.
Data is stored as log2-transformed pseudocounts from Salmon,
after median normalization.
Farris et al publication.
Other farrisdata SummarizedExperiment data:
farrisTxSE,
farrisdata
data(farrisGeneSE);
## Gene annotation DataFrame
if (suppressPackageStartupMessages(require(knitr))) {
knitr::kable(
tail(head(SummarizedExperiment::rowData(farrisGeneSE), 3079), 10)
)
} else {
tail(head(SummarizedExperiment::rowData(farrisGeneSE), 3079), 10)
}
## Sample annotation DataFrame
if (suppressPackageStartupMessages(require(knitr))) {
knitr::kable(
SummarizedExperiment::colData(farrisGeneSE)
)
} else {
SummarizedExperiment::colData(farrisGeneSE)
}
## Assay data matrix for normalized counts
if (suppressPackageStartupMessages(require(knitr))) {
knitr::kable(
tail(head(SummarizedExperiment::assays(farrisGeneSE)[["counts"]], 3079), 10)
)
} else {
tail(head(SummarizedExperiment::assays(farrisGeneSE)[["counts"]], 3079), 10)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.