No description
  • R 61.6%
  • TeX 38.4%
Find a file
2020-10-27 11:33:01 -04:00
data Version 0.4.8 2017-08-31 14:52:02 +02:00
inst Small fixes to vignettes and citation 2019-02-15 09:55:59 +01:00
man Version 1.5.3 2019-10-26 01:25:37 +02:00
man-roxygen Version 0.99.1 2018-01-16 13:32:19 +01:00
R Version 1.5.3 2019-10-26 01:25:37 +02:00
tests Version 1.1.3 2018-07-07 19:46:48 +02:00
vignettes Small fixes to vignettes and citation 2019-02-15 09:55:59 +01:00
.gitignore Small fixes to vignettes and citation 2019-02-15 09:55:59 +01:00
.Rbuildignore Small fixes to vignettes and citation 2019-02-15 09:55:59 +01:00
.travis.yml Version 0.99.1 2018-01-16 13:32:19 +01:00
DESCRIPTION bump x.y.z version to odd y following creation of RELEASE_3_12 branch 2020-10-27 11:33:01 -04:00
NAMESPACE Added vignette on Mus musculus 2018-09-18 09:22:35 +02:00
NEWS Version 1.5.3 2019-10-26 01:25:37 +02:00
README.md Version 0.5.14 2018-01-15 12:45:39 +01:00

Enriching metabolomics data through diffusion

Travis-CI Build Status codecov.io

This repository contains the FELLA package. FELLA is a metabolomics data enrichment tool that contextualises the experimental results using KEGG reactions, enzymes, modules and pathways.

  • The input for our package is a list of affected metabolites between experimental conditions.
  • The layout of the analysis is in a comprehensive human-readable layout, exportable to several formats, containing a biological interpetation of the experiment.

The subnetwork displayed to the user is found using diffusive processes on a graph that represents the known biological annotations at several molecular levels. To use this package type in your terminal:

R CMD build FELLA
R CMD INSTALL FELLA

Alternatively, you can use devtools if you experience some trouble building the vignette. Working in the package directory, this should do the trick:

devtools::install(build_vignettes = T)

Once FELLA is installed, you may load it by typing in your R terminal

library("FELLA")

To get the global picture about FELLA usage, you may browse its vignette

browseVignettes("FELLA")

All of the functions in FELLA have a (very basic) documentation, inclusive the package and the sample data FELLA.sample and input.sample.

In addition, there is a shiny app to facilitate the usage of the package. Before launching it, a database should be built. For example, for Homo sapiens excluding the hsa01100 pathway:

g <- buildGraphFromKEGGREST(
  organism = "hsa", 
  filter.path = "hsa01100"
)
buildDataFromGraph(g)

Then we can launch the shiny app

FELLA:::launchApp(
  host = "127.0.0.1", 
  port = 8888
)

and leave the command active. Going to the direction http://127.0.0.1:8888 will start the analysis.