farrisTxSE | R Documentation |
Farris et al transcript-level expression data
farrisTxSE
SummarizedExperiment
object with 122733 transcript rows, and 24
sample columns. Sample annotations are accessed as described
for SummarizedExperiment-class
objects, using SummarizedExperiment::colData()
. Transcript and 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 TPM values
generated by Salmon, after import using
tximport::tximport()
. The log2 transformation was
log2(1+x).
Median-normalized log2-transformed pseudocount
data per-gene generated by Salmon, after import using
tximport::tximport()
. The log2 transformation was
log2(1+x).
Raw log2-transformed TPM values
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, which includes the relationship between transcript and gene.
Gencode transcript_id as defined in the GTF file.
Most current Entrez gene symbol associated with the transcript_id, as of June 2018.
Gencode attributes as defined in the GTF file.
Boolean indicating whether the gene or transcript contained an annotated 3'UTR region defined in the Gencode GTF file.
Following 3'UTR extension based upon RNA-seq data coverage, this boolean field indicates whether each transcript or gene contains a 3'UTR with or without extension by observed RNA-seq coverage.
Boolean indicating whether each transcript
was considered "detected" based upon TPM and count data per gene,
as described in splicejam::defineDetectedTx()
.
SummarizedExperiment object containing transcript-level expression
data following Salmon quantitation, and import using
tximport::tximport()
at the transcript level.
Data is stored as log2-transformed TPM, and log2-transformed
pseudocounts from Salmon, after median normalization.
Farris et al publication.
Other farrisdata SummarizedExperiment data:
farrisGeneSE
,
farrisdata
data(farrisTxSE);
## Transcript-Gene annotation DataFrame
if (suppressPackageStartupMessages(require(knitr))) {
knitr::kable(
tail(head(SummarizedExperiment::rowData(farrisTxSE), 15385), 10)
)
} else {
tail(head(SummarizedExperiment::rowData(farrisTxSE), 15385), 10)
}
## Sample annotation DataFrame
if (suppressPackageStartupMessages(require(knitr))) {
knitr::kable(
SummarizedExperiment::colData(farrisTxSE)
)
} else {
head(SummarizedExperiment::colData(farrisTxSE));
}
## Assay data matrix for normalized TPM
if (suppressPackageStartupMessages(require(knitr))) {
knitr::kable(
tail(head(SummarizedExperiment::assays(farrisTxSE)[["tpm"]], 15385), 10)
)
} else {
tail(head(SummarizedExperiment::assays(farrisTxSE)[["tpm"]], 15385), 10)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.