|
a |
|
b/R/metabolome.R |
|
|
1 |
#' Metabolomic data set that is used in the toy example provided by the `multiGSEA` package. |
|
|
2 |
#' |
|
|
3 |
#' Processed metabolomics data set that will be used throughout |
|
|
4 |
#' the vignette provided by the `multiGSEA` package. The raw data |
|
|
5 |
#' was originally published by [Quiros _et al._](http://doi.org/10.1083/jcb.201702058) |
|
|
6 |
#' and can be accessed within the online supplementary material. |
|
|
7 |
#' |
|
|
8 |
#' @name metabolome |
|
|
9 |
#' |
|
|
10 |
#' @docType data |
|
|
11 |
#' |
|
|
12 |
#' @usage data(metabolome) |
|
|
13 |
#' |
|
|
14 |
#' @format A tibble with 4 variables and 4881 measured proteome features: |
|
|
15 |
#' \describe{ |
|
|
16 |
#' \item{HMDB}{HMDB identifier of measured metabolites.} |
|
|
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(metabolome) |
|
|
26 |
NULL |