Name Mode Size
.github 040000
R 040000
data-raw 040000
data 040000
docs 040000
inst 040000
man 040000
pkgdown 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
DESCRIPTION 100644 2 kb
Dockerfile 100644 0 kb
LICENSE 100644 0 kb
LICENSE.md 100644 1 kb
NAMESPACE 100644 3 kb
NEWS 100644 0 kb
README.md 100644 4 kb
codecov.yml 100644 0 kb
README.md
# *lipidr*: Data Mining and Analysis of Lipidomics Datasets in R <img src="man/figures/logo.png" align="right" alt="" width="120" /> [![R-CMD-check](https://github.com/ahmohamed/lipidr/workflows/BiocCheck/badge.svg)](https://github.com/ahmohamed/lipidr/actions) [![Coverage status](https://codecov.io/gh/ahmohamed/lipidr/branch/master/graph/badge.svg)](https://codecov.io/github/ahmohamed/lipidr?branch=master) [![BioC status](https://bioconductor.org/shields/years-in-bioc/lipidr.svg)](https://bioconductor.org/packages/lipidr/) ## See full guide at [lipidr.org](https://www.lipidr.org/) ## Overall workflow <img src="man/figures/workflow.png" width="400"> ## Input ### Numerical Matrix To use `lipidr` for your analysis using numerical matrix as input, you need 2 files: 1. Numerical table where lipids are rows and samples are columns. Lipid names should be in the first column, and sample names are in the first row. ([see example here](https://github.com/ahmohamed/lipidr/tree/master/inst/extdata/brca_matrix.csv)) 2. A table with the sample annotation / groups, where the sample names are in first column. Note the sample names must be identical in the two files. ([see example here](https://github.com/ahmohamed/lipidr/tree/master/inst/extdata/brca_clin.csv)) <img src="man/figures/num_matrix.png" width="800"> `lipidr` can convert these 2 files to `LipidomicsExperiment` as follows: ```r d <- as_lipidomics_experiment(read.csv("data_matrix.csv")) d <- add_sample_annotation(d, "data_clin.csv") ``` ### Export from Skyline Here `lipidr` also requires 2 files: 1. Results exported from Skyline as CSV file (see image below). ([see example here](https://github.com/ahmohamed/lipidr/tree/master/inst/extdata/A1_data.csv)) 2. A table / CSV file with the sample annotation / groups, where the sample names are in first column. Note the sample names must be identical in the two files. ([see example here](https://github.com/ahmohamed/lipidr/tree/master/inst/extdata/clin.csv)) <img src="man/figures/skyline_export.png" width="800"> In `lipidr`: ```r d <- read_skyline("Skyline_export.csv") d <- add_sample_annotation(d, "data_clin.csv") ``` ## LipidomicsExperiment Object `lipidr` represents lipidomics datasets as a LipidomicsExperiment, which extends [SummarizedExperiment](http://bioconductor.org/packages/SummarizedExperiment/), to facilitate integration with other Bioconductor packages. ## Quality control & plotting `lipidr` generates various plots, such as box plots or PCA, for quality control of samples and measured lipids. Lipids can be filtered by their %CV. Normalization methods with and without internal standards are also supported. ## Univariate Analysis Univariate analysis can be performed using any of the loaded clinical variables, which can be readily visualized as volcano plots. Multi-group comparisons and adjusting for confounding variables is also supported (refer to examples on [www.lipidr.org](https://www.lipidr.org/)). A novel lipid set enrichment analysis is implemented to detect preferential regulation of certain lipid classes, total chain lengths or unsaturation patterns. Plots for visualization of enrichment results are also implemented. ## Multivariate Analysis `lipidr` implements PCA, PCoA and OPLS(DA) to reveal patterns in data and discover variables related to an outcome of interest. Top associated lipids as well as scores and loadings plots can be interactively investigated using `lipidr`. # Install *lipidr* ## From Bioconductor In R console, type: ```r if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") BiocManager::install("lipidr") ``` ## Install development version from GitHub In R console, type: ```r library(devtools) install_github("ahmohamed/lipidr") ``` ## Using Docker You can use `lipidr` in a containerized form by pulling the image from docker hub. ``` docker pull ahmohamed/lipidr docker run -e PASSWORD=bioc -p 8787:8787 ahmohamed/lipidr:latest ``` In your browser, navigate to RStudio will be available on your web browser at `http://localhost:8787`. The USER is fixed to always being `rstudio`. The password in the above command is given as `bioc` but it can be set to anything. For more information on how-to-use, refer to [Bioconductor help page](https://www.bioconductor.org/help/docker/). You can access your local files by mapping to the container: ``` docker run -e PASSWORD=bioc -p 8787:8787 \ -v "path/to/data_folder":"/home/rstudio/data_folder" \ ahmohamed/lipidr:latest ``` You should see `data_folder` in your working directory.