Description Usage Format Examples
A dataset containing the normalized gene expression data from mouse, chicken, and macaque RNA-seq data.
1 |
A matrix with 15 rows and 37 variables. The rows of the matrix represent genes that are predicted as being liver (first 10 rows) specific or kidney (last 5 rows) specific. Mouse samples are stored in columns 1-12, chicken in columns 13-24, and macaque in columns 25-37. The 37 variables are labelled as follows:
Brain samples
Kidney samples
Liver samples
1 2 3 4 5 6 7 8 9 10 11 | data(tissue_specific_genes)
ch_grp <- c("B", "B", "K", "K", "L", "L", "B", "K", "B", "K", "L", "K")
mu_grp <- c("B", "B", "K", "K", "L", "L", "B", "K", "L", "B", "K", "L")
maca_grp <- c("B", "B", "K", "K", "L", "L", "L", "B", "K", "L", "B", "K", "L")
mouse <- 1:12
chicken <- 13:24
macaque <- 25:37
chicken.profile <- tissue_specific_genes[, chicken][, which(ch_grp == "L")]
mouse.profile <- tissue_specific_genes[, mouse][, which(mu_grp == "L")]
macaque.profile <- tissue_specific_genes[, macaque][, which(maca_grp == "L")]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.