farrisGeneSE: Farris et al gene-level expression data

Description Usage Format Details Source See Also Examples

Description

Farris et al gene-level expression data

Usage

1

Format

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:

CellType

The major excitatory pyramidal cell types in the mouse hippocampus, CA1, CA2, CA3, and dentate gyrus (DG).

Compartment

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.

AnimalID

The number assigned to each mouse.

groupName

The sample group name associated with each CellType and Compartment.

The count data is accessed through the function assays and has the following entries:

counts

Median-normalized log2-transformed pseudocount data per-gene generated by Salmon, after import using tximport::tximport(). The log2 transformation was log2(1+x).

raw_counts

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.

Details

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.

Source

Farris et al publication.

See Also

Other farrisdata SummarizedExperiment data: farrisTxSE

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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)
}

jmw86069/farrisdata documentation built on Oct. 8, 2019, 9:56 p.m.