|
a |
|
b/R/transcriptome.R |
|
|
1 |
#' Transcriptomic data set that is used in the toy example provided by the `multiGSEA` package. |
|
|
2 |
#' |
|
|
3 |
#' Processed transcriptomics data set that will be used throughout the |
|
|
4 |
#' vignette provided by the `multiGSEA` package. The raw data was originally |
|
|
5 |
#' published by [Quiros _et al._](http://doi.org/10.1083/jcb.201702058) and |
|
|
6 |
#' deposited at [NCBI Geo](https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE84631). |
|
|
7 |
#' |
|
|
8 |
#' @name transcriptome |
|
|
9 |
#' |
|
|
10 |
#' @docType data |
|
|
11 |
#' |
|
|
12 |
#' @usage data(transcriptome) |
|
|
13 |
#' |
|
|
14 |
#' @format A tibble with 4 variables and 15174 measured transcriptome features: |
|
|
15 |
#' \describe{ |
|
|
16 |
#' \item{Symbol}{HGNC symbol of measured transcripts.} |
|
|
17 |
#' \item{logFC}{Log2-transformed fold change between treatment and control.} |
|
|
18 |
#' \item{pValue}{P-value associated with the fold change.} |
|
|
19 |
#' \item{adj.pValue}{Adjusted p-value associated with the fold change.} |
|
|
20 |
#' } |
|
|
21 |
#' |
|
|
22 |
#' @keywords datasets |
|
|
23 |
#' |
|
|
24 |
#' @examples |
|
|
25 |
#' data(transcriptome) |
|
|
26 |
NULL |