FELLA 1.18.0
FELLA
is an R package that brings a new concept
for metabolomics data interpretation.
The starting point of this data enrichment is
a list of affected metabolites, which can stem from a
contrast between experimental groups.
This list, that may vary in size,
encompasses key role players from different
biological pathways that generate a biological perturbation.
The classical way to analyse this list is the over representation analysis. Each metabolic pathway has a statistic, the number of affected metabolites in it, that yields a p-value. After correcting for multiple testing, a list of prioritised pathways helps performing a quality check on the data and suggesting novel biological mechanisms related to the data. Subsequent generations of pathway analysis methods attempt to include quantitative and/or topological data in the statistics in order to improve power for subtle signals, but the interpretation of a prioritised pathway list remains a challenge.
Package FELLA
, on the other hand,
introduces a comprehensive output that encompasses
other biological entities that coherently relate
the top ranked pathways.
The priorisation of the pathways and other entiteis stems from a
diffusion process on a holistic graph representation
of the KEGG database.
FELLA
needs:
FELLA.DATA
S4 object.FELLA.USER
S4 object,
along with user analyses.This vignette makes use of sample data
that contains small subgraph of FELLA
’s KEGG graph
(mid 2017 KEGG release).
All the necessary contextual data is stored
in an S4 data structure with class FELLA.DATA
.
Several functions need access to the contextual data,
passed as an argument called data
,
being the enrichment itself among them.
library(FELLA)
data("FELLA.sample")
class(FELLA.sample)
## [1] "FELLA.DATA"
## attr(,"package")
## [1] "FELLA"
show(FELLA.sample)
## General data:
## - KEGG graph:
## * Nodes: 670
## * Edges: 1677
## * Density: 0.003741383
## * Categories:
## + pathway [2]
## + module [6]
## + enzyme [58]
## + reaction [279]
## + compound [325]
## * Size: 366.9 Kb
## - KEGG names are ready.
## -----------------------------
## Hypergeometric test:
## - Matrix is ready
## * Dim: 325 x 2
## * Size: 25 Kb
## -----------------------------
## Heat diffusion:
## - Matrix not loaded.
## - RowSums are ready.
## -----------------------------
## PageRank:
## - Matrix not loaded.
## - RowSums are ready.
Keep in mind that FELLA.DATA
objects need to
be constructed only once by using buildGraphFromKEGGREST
and buildDataFromGraph
, in that precise order.
This will store them in a local path and they
should be loaded through loadKEGGdata
.
The user is disadvised from manually modifying the database
internal files and the FELLA.DATA
object slots
not to corrupt the database.
The second block of necessary data is a list of affected metabolites, which shoud be specified as KEGG compound IDs. Provided is a list of hypothetical affected metabolites belonging to the graph, to which some decoys that do not map to the graph are added.
data("input.sample")
input.full <- c(input.sample, paste0("intruder", 1:10))
show(input.full)
## [1] "C00143" "C00546" "C04225" "C16328" "C00091"
## [6] "C15979" "C16333" "C05264" "C05258" "C00011"
## [11] "C00083" "C00044" "C05266" "C00479" "C05280"
## [16] "C01352" "C05268" "C16329" "C00334" "C05275"
## [21] "C14145" "C00081" "C04253" "C00027" "C00111"
## [26] "C00332" "C00003" "C00288" "C05467" "C00164"
## [31] "intruder1" "intruder2" "intruder3" "intruder4" "intruder5"
## [36] "intruder6" "intruder7" "intruder8" "intruder9" "intruder10"
Compounds are introduced through the defineCompounds
function and provide the first FELLA.USER
user data object containing the
mapped compounds and empty analyses slots.
The user should always build FELLA.USER
objects
through defineCompounds
instead of manipulating
the slots of the object manually - this might skip quality checks.
myAnalysis <- defineCompounds(
compounds = input.full,
data = FELLA.sample)
## No background compounds specified. Default background will be used.
## Warning in defineCompounds(compounds = input.full, data = FELLA.sample): Some
## compounds were introduced as affected but they do not belong to the background.
## These compounds will be excluded from the analysis. Use 'getExcluded' to see
## them.
Note that a warning message informs the user
that some compounds did not map to the KEGG compound collection.
Compounds that successfully mapped
can be obtained through getInput
,
getInput(myAnalysis)
## [1] "C00003" "C00011" "C00027" "C00044" "C00081" "C00083" "C00091" "C00111"
## [9] "C00143" "C00164" "C00288" "C00332" "C00334" "C00479" "C00546" "C01352"
## [17] "C04225" "C04253" "C05258" "C05264" "C05266" "C05268" "C05275" "C05280"
## [25] "C05467" "C14145" "C15979" "C16328" "C16329" "C16333"
while compounds that were excluded
because of mismatch can be accessed through getExcluded
:
getExcluded(myAnalysis)
## [1] "intruder1" "intruder2" "intruder3" "intruder4" "intruder5"
## [6] "intruder6" "intruder7" "intruder8" "intruder9" "intruder10"
Keep in mind that exact matching is sought, so be extremely careful with whitespaces, tabs or similar characters that might create mismatches. For example:
input.fail <- paste0(" ", input.full)
defineCompounds(
compounds = input.fail,
data = FELLA.sample)
## Error in defineCompounds(compounds = input.fail, data = FELLA.sample): None of the specified compounds appear in the available KEGG data.
Once the FELLA.DATA
and the FELLA.USER
with the affected metabolites are ready,
the data can be easily enriched.
There are three methods to enrich:
method = "hypergeom"
):
it performs the metabolite-sampling hypergeometric test
using the connections in FELLA
’s KEGG graph.
This is included for completeness and does not include
the contextual novelty of the diffusive methods.method = "diffusion"
):
it performs sub-network analysis on the KEGG graph
to extract a meaningful subgraph.
This subgraph can be plotted an interpretedmethod = "pagerank"
):
analogous to "diffusion"
but using the directed diffusion,
which matches the PageRank algorithm for web ranking.For methods "diffusion"
and "pagerank"
,
two statistical approximations are proposed:
approx = "normality"
):
scores are computed through z-scores
based on analytical expected value and covariance matrix
of the null model for diffusion.
This approximation is deterministic and fast.approx = "simulation"
):
scores are computed through Monte Carlo trials
of the random variables.
This approximation requires computing the random trials,
governed by the ntrials
argument.The function enrich
wraps the functions
defineCompounds
, runHypergeom
, runDiffusion
and runPagerank
in an easily usable manner, returning a FELLA.USER
object with complete analyses.
myAnalysis <- enrich(
compounds = input.full,
method = "diffusion",
approx = "normality",
data = FELLA.sample)
## No background compounds specified. Default background will be used.
## Warning in defineCompounds(compounds = compounds, compoundsBackground =
## compoundsBackground, : Some compounds were introduced as affected but they
## do not belong to the background. These compounds will be excluded from the
## analysis. Use 'getExcluded' to see them.
## Running diffusion...
## Computing p-scores through the specified distribution.
## Done.
The output is quite informative and aggregates
all the warnings.
Let’s compare an empty FELLA.USER
object
show(new("FELLA.USER"))
## Compounds in the input: empty
## Background compounds: all available compounds (default)
## -----------------------------
## Hypergeometric test: not performed
## -----------------------------
## Heat diffusion: not performed
## -----------------------------
## PageRank: not performed
to the output of a processed one:
show(myAnalysis)
## Compounds in the input: 30
## [1] "C00003" "C00011" "C00027" "C00044" "C00081" "C00083" "C00091" "C00111"
## [9] "C00143" "C00164" "C00288" "C00332" "C00334" "C00479" "C00546" "C01352"
## [17] "C04225" "C04253" "C05258" "C05264" "C05266" "C05268" "C05275" "C05280"
## [25] "C05467" "C14145" "C15979" "C16328" "C16329" "C16333"
## Background compounds: all available compounds (default)
## -----------------------------
## Hypergeometric test: not performed
## -----------------------------
## Heat diffusion: ready.
## P-scores under 0.05: 86
## -----------------------------
## PageRank: not performed
The wrapper function enrich
can run the three analysis
at once with the option method = listMethods()
, or only
the desired ones providing them as a character vector:
myAnalysis <- enrich(
compounds = input.full,
method = listMethods(),
approx = "normality",
data = FELLA.sample)
show(myAnalysis)
## Compounds in the input: 30
## [1] "C00003" "C00011" "C00027" "C00044" "C00081" "C00083" "C00091" "C00111"
## [9] "C00143" "C00164" "C00288" "C00332" "C00334" "C00479" "C00546" "C01352"
## [17] "C04225" "C04253" "C05258" "C05264" "C05266" "C05268" "C05275" "C05280"
## [25] "C05467" "C14145" "C15979" "C16328" "C16329" "C16333"
## Background compounds: all available compounds (default)
## -----------------------------
## Hypergeometric test: ready.
## Top 2 p-values:
## hsa00640 hsa00010
## 8.540386e-09 9.999888e-01
##
## -----------------------------
## Heat diffusion: ready.
## P-scores under 0.05: 86
## -----------------------------
## PageRank: ready.
## P-scores under 0.05: 98
The wrapped functions work in a similar way,
here is an example with runDiffusion
:
myAnalysis_bis <- runDiffusion(
object = myAnalysis,
approx = "normality",
data = FELLA.sample)
## Running diffusion...
## Computing p-scores through the specified distribution.
## Done.
show(myAnalysis_bis)
## Compounds in the input: 30
## [1] "C00003" "C00011" "C00027" "C00044" "C00081" "C00083" "C00091" "C00111"
## [9] "C00143" "C00164" "C00288" "C00332" "C00334" "C00479" "C00546" "C01352"
## [17] "C04225" "C04253" "C05258" "C05264" "C05266" "C05268" "C05275" "C05280"
## [25] "C05467" "C14145" "C15979" "C16328" "C16329" "C16333"
## Background compounds: all available compounds (default)
## -----------------------------
## Hypergeometric test: ready.
## Top 2 p-values:
## hsa00640 hsa00010
## 8.540386e-09 9.999888e-01
##
## -----------------------------
## Heat diffusion: ready.
## P-scores under 0.05: 86
## -----------------------------
## PageRank: ready.
## P-scores under 0.05: 98
The method plot
for data from the package FELLA
allows a friendly visualisation of the relevant
part of the KEGG graph.
In the case method = "hypergeom"
the plot encompasses
a bipartite graph that contains
top pathways and affected compounds.
In that case, threshold = 1
allows the visualisation
of both pathways; otherwise a plot with only one pathway
would be quite uninformative.
plot(
x = myAnalysis,
method = "hypergeom",
main = "My first enrichment using the hypergeometric test in FELLA",
threshold = 1,
data = FELLA.sample)
For method = "diffusion"
the graph contains
a richer representations involving
modules, enzymes and reactions
that link affected pathways and compounds.
plot(
x = myAnalysis,
method = "diffusion",
main = "My first enrichment using the diffusion analysis in FELLA",
threshold = 0.1,
data = FELLA.sample)
For method = "pagerank"
the concept is analogous to diffusion:
plot(
x = myAnalysis,
method = "pagerank",
main = "My first enrichment using the PageRank analysis in FELLA",
threshold = 0.1,
data = FELLA.sample)
FELLA
offers several exporting alternatives,
both for the R environment and for external software.
The appropriate functions to export the results
inside R are generateResultsTable
for a data.frame object:
myTable <- generateResultsTable(
object = myAnalysis,
method = "diffusion",
threshold = 0.1,
data = FELLA.sample)
## Writing diffusion results...
## Done.
knitr::kable(head(myTable, 20))
KEGG.id | Entry.type | KEGG.name | p.score |
---|---|---|---|
hsa00640 | pathway | Propanoate metabolism - Homo sapiens (human) | 0.0036894 |
M00013 | module | Malonate semialdehyde pathway, propanoyl-CoA … | 0.0044683 |
1.1.1.211 | enzyme | long-chain-3-hydroxyacyl-CoA dehydrogenase | 0.0371099 |
1.1.1.35 | enzyme | 3-hydroxyacyl-CoA dehydrogenase | 0.0392511 |
1.2.1.18 | enzyme | malonate-semialdehyde dehydrogenase (acetylat… | 0.0069255 |
1.2.1.27 | enzyme | methylmalonate-semialdehyde dehydrogenase (Co… | 0.0165439 |
2.3.1.9 | enzyme | acetyl-CoA C-acetyltransferase | 0.0085923 |
3.1.2.4 | enzyme | 3-hydroxyisobutyryl-CoA hydrolase | 0.0786804 |
4.1.1.32 | enzyme | phosphoenolpyruvate carboxykinase (GTP) | 0.0700429 |
4.1.1.41 | enzyme | (S)-methylmalonyl-CoA decarboxylase | 0.0223899 |
4.1.1.9 | enzyme | malonyl-CoA decarboxylase | 0.0002538 |
4.2.1.17 | enzyme | enoyl-CoA hydratase | 0.0015731 |
5.3.3.8 | enzyme | dodecenoyl-CoA isomerase | 0.0164255 |
6.2.1.4 | enzyme | succinate—CoA ligase (GDP-forming) | 0.0019142 |
6.2.1.5 | enzyme | succinate—CoA ligase (ADP-forming) | 0.0125330 |
R00209 | reaction | pyruvate:NAD+ 2-oxidoreductase (CoA-acetylati… | 0.0885938 |
R00233 | reaction | malonyl-CoA carboxy-lyase (acetyl-CoA-forming… | 0.0000698 |
R00238 | reaction | Acetyl-CoA:acetyl-CoA C-acetyltransferase | 0.0001037 |
R00353 | reaction | malonyl-CoA:pyruvate carboxytransferase | 0.0065794 |
R00405 | reaction | Succinate:CoA ligase (ADP-forming) | 0.0468613 |
…and generateResultsGraph
for a
graph in igraph format:
myGraph <- generateResultsGraph(
object = myAnalysis,
method = "diffusion",
threshold = 0.1,
data = FELLA.sample)
show(myGraph)
## IGRAPH a66eec7 UNW- 102 166 --
## + attr: name (v/c), com (v/n), NAME (v/x), entrez (v/x), label (v/c),
## | input (v/l), weight (e/n)
## + edges from a66eec7 (vertex names):
## [1] hsa00640--M00013 M00013 --1.1.1.211 M00013 --1.1.1.35
## [4] M00013 --1.2.1.18 M00013 --1.2.1.27 hsa00640--2.3.1.9
## [7] M00013 --3.1.2.4 hsa00640--4.1.1.41 hsa00640--4.1.1.9
## [10] M00013 --4.2.1.17 M00013 --5.3.3.8 hsa00640--6.2.1.4
## [13] hsa00640--6.2.1.5 4.1.1.9 --R00233 2.3.1.9 --R00238
## [16] hsa00640--R00353 6.2.1.5 --R00405 4.1.1.32--R00431
## [19] 6.2.1.4 --R00432 1.2.1.18--R00705 1.2.1.27--R00705
## + ... omitted several edges
Results can be saved as permanent files.
The data.frame data format can be saved as a .csv
file:
myTempDir <- tempdir()
myExp_csv <- paste0(myTempDir, "/table.csv")
exportResults(
format = "csv",
file = myExp_csv,
method = "pagerank",
threshold = 0.1,
object = myAnalysis,
data = FELLA.sample)
## Exporting to a csv file...
## Writing pagerank results...
## Done.
## Done
test <- read.csv(file = myExp_csv)
knitr::kable(head(test))
KEGG.id | Entry.type | KEGG.name | p.score |
---|---|---|---|
hsa00640 | pathway | Propanoate metabolism - Homo sapiens (human) | 0.0000010 |
M00013 | module | Malonate semialdehyde pathway, propanoyl-CoA … | 0.0000010 |
1.1.1.211 | enzyme | long-chain-3-hydroxyacyl-CoA dehydrogenase | 0.0921034 |
1.1.1.35 | enzyme | 3-hydroxyacyl-CoA dehydrogenase | 0.0002980 |
4.1.1.32 | enzyme | phosphoenolpyruvate carboxykinase (GTP) | 0.0000154 |
4.1.1.9 | enzyme | malonyl-CoA decarboxylase | 0.0000014 |
In the same line, the graph can be saved in RData
:
myExp_graph <- paste0(myTempDir, "/graph.RData")
exportResults(
format = "igraph",
file = myExp_graph,
method = "pagerank",
threshold = 0.1,
object = myAnalysis,
data = FELLA.sample)
## Exporting to a RData file using 'igraph' object...
## Done
stopifnot("graph.RData" %in% list.files(myTempDir))
Other formats exported by igraph
are also available, internally using
their function igraph::write.graph
.
Check the format argument
of ?igraph::write.graph
for a list of
the supported formats.
For example, using "pajek"
format:
myExp_pajek <- paste0(myTempDir, "/graph.pajek")
exportResults(
format = "pajek",
file = myExp_pajek,
method = "diffusion",
threshold = 0.1,
object = myAnalysis,
data = FELLA.sample)
## Exporting to the format pajek using igraph...
## Done
stopifnot("graph.pajek" %in% list.files(myTempDir))
This option is toggled if the format does not match any other predefined export option.
For reproducibility purposes, below is the sessionInfo()
output:
sessionInfo()
## R version 4.2.1 (2022-06-23)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.5 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.16-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.16-bioc/R/lib/libRlapack.so
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_GB LC_COLLATE=C
## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
## [9] LC_ADDRESS=C LC_TELEPHONE=C
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## attached base packages:
## [1] stats4 stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] magrittr_2.0.3 igraph_1.3.5 KEGGREST_1.38.0
## [4] org.Mm.eg.db_3.16.0 AnnotationDbi_1.60.0 IRanges_2.32.0
## [7] S4Vectors_0.36.0 Biobase_2.58.0 BiocGenerics_0.44.0
## [10] FELLA_1.18.0 BiocStyle_2.26.0
##
## loaded via a namespace (and not attached):
## [1] tinytex_0.42 xfun_0.34 bslib_0.4.0
## [4] lattice_0.20-45 vctrs_0.5.0 htmltools_0.5.3
## [7] yaml_2.3.6 blob_1.2.3 rlang_1.0.6
## [10] jquerylib_0.1.4 DBI_1.1.3 bit64_4.0.5
## [13] GenomeInfoDbData_1.2.9 plyr_1.8.7 stringr_1.4.1
## [16] zlibbioc_1.44.0 Biostrings_2.66.0 evaluate_0.17
## [19] memoise_2.0.1 knitr_1.40 fastmap_1.1.0
## [22] GenomeInfoDb_1.34.0 curl_4.3.3 highr_0.9
## [25] Rcpp_1.0.9 BiocManager_1.30.19 cachem_1.0.6
## [28] magick_2.7.3 jsonlite_1.8.3 XVector_0.38.0
## [31] bit_4.0.4 png_0.1-7 digest_0.6.30
## [34] stringi_1.7.8 bookdown_0.29 grid_4.2.1
## [37] cli_3.4.1 tools_4.2.1 bitops_1.0-7
## [40] sass_0.4.2 RCurl_1.98-1.9 RSQLite_2.2.18
## [43] crayon_1.5.2 pkgconfig_2.0.3 Matrix_1.5-1
## [46] rmarkdown_2.17 httr_1.4.4 R6_2.5.1
## [49] compiler_4.2.1