Introduction

Holomics is an R Shiny application that allows its users to perform single- and multi-omics analyses by providing a user-friendly interface to upload the different omics datasets, select and run the implemented algorithms and finally visualize the generated results.

Holomics is mainly built on the R package mixOmics (Rohart et al. 2017), which offers numerous algorithms for the integrative analysis of omics datasets. From this repertoire, the single-omics algorithms “Principle Component Analysis” (PCA) and “Partial Least Squares Discriminant Analysis” (PLS-DA), the pairwise-omics analysis “sparse Partial Least Squares” (sPLS) and the multi-omics framework DIABLO (“Data Integration Analysis for Biomarker discovery using Latent variable approaches for Omics studies”) have been implemented in Holomics.

Getting started

Installation

For the current Holomics version it is very important that you use R 4.2. and check that mixOmics was installed with version 6.22.0.

CRAN

install.packages("Holomics")

Github

# Install devtools if it is not already installed
install.packages("devtools")
library(devtools)

# Install Holomics package 
install_github("MolinLab/Holomics")

Additional packages

You need to install the Bioconductor package separately.

if (!require("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("mixOmics")
BiocManager::install("BiocParallel")

I could be that you need to install some Bioconductor packages separately. Just use the code snippet above.

Start application

Within the Rstudio environment, start the application either with

library(Holomics)
run_app()

or

Holomics::run_app()

Data preparation

Holomics requires two input file types: first, the dataset(s) with the measured values of the performed omics analysis (e.g. transcriptomics, metabolomics) and second, a metadata file containing the label or class information associated to the samples.

Omics dataset

Omics datasets can contain molecular features measured on a continuous scale (e.g. microarray, mass spectrometry-based metabolomics) or sequenced-based count data (e.g. RNA-seq, 16S rRNA amplicon sequencing) that become continuous after pre-processing and normalisation. Generally, the omics dataset has to be a numeric matrix (basically a count table) in an .xlsx or .csv file format, where the rows have to be the samples and the columns the measured features (see Table 1). The first column has to contain the sample names and the first row the feature names. There are generally no restrictions regarding characters and symbols that are allowed in the names. It is recommended to keep the number of special characters and symbols to a minimum. Important is that all the omics datasets that belong together in the analyses have the same samples names and the same order. If the data contains more features/columns than excel allows, the matrix also can be uploaded in the transposed format. Additionally, if the omics dataset contains more than 10.000 features, the dataset will be pre-filtered to 10.000 or less features as mixOmics is able to process a maximum of 10.000 features per dataset (Lê Cao 2023). Any wanted/necessary normalisation needs to be done for each omics dataset separately before using Holomics.

Table 1: Example of an omics dataset with sample names in the first column and feature names in the first row.
ASV_1855 ASV_258 ASV_1015 ASV_1018 ASV_103 ASV_1089 ASV_1101
Sample1 0 0 24 21 120 0 0
Sample2 0 90 25 0 241 8 0
Sample3 0 0 0 16 150 0 8
Sample4 0 0 14 7 307 0 0
Sample5 16 0 29 0 91 8 0
Sample6 14 0 45 20 94 0 13
Sample7 14 0 0 20 63 0 27
Sample8 12 0 0 17 95 14 9

Metadata file

The metadate file has to be in an .xlsx or .csv file format with at least two columns (see Table 2 for an example):

  • The first column contains the sample names, which have to be exactly the same and in the same order as in the associated omics datasets.

  • The second column contains the classes or labels of the samples (e.g. control, treatment1, …). The column name of the second column has to be the name of the attribute the classes describe (e.g. Quality, Treatment, …).

  • Optional: in the third column, a color code (HEX code or ASCII name) per class can be added, which will be used later in most of the plots. Here a link to an easy to use Color picker.

Table 2: Example of a valid metadata file with the mandatory first two columns (sample name and label information) and the optional column with the color codes.
Samples Class Colorcode
Sample1 control #b3ca81
Sample2 control #b3ca82
Sample3 control #b3ca83
Sample4 control #b3ca84
Sample5 treatment1 red
Sample6 treatment1 red
Sample7 treatment1 red
Sample8 treatment1 red

Workflow overview

To make use of all the functionality provided by Holomics, the below described workflow should be followed. Firstly, the datasets are uploaded where an eventual pre-filtering/transformation step takes place. Afterwards, the single-omics analysis is performed, where key features are identified and the datasets are reduced accordingly. With these reduced datasets, the multi-omics analyses is applied to identify correlations between 2-n datasets.


Visualisation of the Holomics workflow, which goes from uploading the input datasets to performing single-omics analyses including feature selection and finally going into the multi-omics analyses. Alternatively, it is possible to go directly into the multi-omics analyses.

Figure 1: Visualisation of the Holomics workflow, which goes from uploading the input datasets to performing single-omics analyses including feature selection and finally going into the multi-omics analyses. Alternatively, it is possible to go directly into the multi-omics analyses.


NOTE: If already pre-filtered (ideally by Holomics at an earlier time) datasets are uploaded, it is possible to omit the dataset reduction route and jump directly to the multi-omics analysis step. This shortcut route can also be used, if the original datasets should go into the multi-omics analysis. For this, the “was previously filtered” checkbox needs to be activated too, to trick Holomics.

Data upload

On the data upload page the omics datasets (Figure 2) and the related metadata (including sample names and labels, see Figure 3) are uploaded. On both sub-pages, a collapsible “General information” box is given, which contains some information on how the different input files should look like. Additionally, next to some form fields question marks indicate a tooltip for a quick explanation.

Upload an omics dataset

To upload an omics dataset (e.g. transcriptomics read count table, metabolomics table) “Omics data” as the data type should be selected. Afterwards, the respective .xlsx or .csv file has to be selected via the file upload and a file name must be entered, which will be used later in the analyses pages to identify that dataset easily. Also, it has to be checked whether the dataset was already filtered at an earlier time point (through Holomics) or not. If the dataset is coming from microbial community analyses (e.g. OTU/ASV table), additionally, it is important to check the “contains microbiome data” checkbox, so that a necessary pre-processing step which is basically the mixMC pipeline for microbiomics data (Le Cao et al. 2016), is triggered. In case the dataset is transposed (samples are in columns and the features in rows) the “has transposed format” checkbox needs to be activated.

Next, the type of analysis for the dataset(s) needs to be selected. Here, the datasets can only be used for multi-omics analyses if the “was previously filtered” checkbox is checked (see also NOTE above). And, lastly, the name which should be used in the plots for the given omics dataset can be selected or manually entered. Be aware that the dataset name from before and the “plot name” here do not need to be the same and that the “plot name” can be the same for multiple datasets.

By clicking the save button, the dataset will be saved in the Holomics application and a summary of the uploaded information is added to the table on the right side of the page.


Visualisation of the upload page for the omics datasets. On the left side is an example of an filled-in form with a new dataset before saving it and on the right side a summary of an already uploaded dataset is presented.

Figure 2: Visualisation of the upload page for the omics datasets. On the left side is an example of an filled-in form with a new dataset before saving it and on the right side a summary of an already uploaded dataset is presented.

Upload the metadata file

To upload the metadata file with the labels or class information of each sample, “Labels/Classes” as the data type needs to be selected before uploading the respective .xlsx or .csv file. Additionally, a name for the dataset file itself must be entered. Lastly, if the metadata file also contains the optional third column with the color codes (HEX codes or ASCII names) per sample, the box “Includes color code” needs to be activated. This customized color scheme is then used in most of the plots to depict the distinct classes. After saving, a summary of the uploaded information is added to the table on the right side of the page. Figure 3 shows on the right side the summary of an already uploaded metadata file and on the left side the form to upload a new/additional file.


Visualisation of the upload page for the metadata file. On the left side the form for uploading new metadata files is given and on the right side a summary of an already uploaded is presented

Figure 3: Visualisation of the upload page for the metadata file. On the left side the form for uploading new metadata files is given and on the right side a summary of an already uploaded is presented

Single-omics analyses

Principle Component Analysis

For a first glimpse into the individual omics data and for the necessary feature selection, a Principle Component Analysis (PCA) can be done. This page (see Figure 4) is separated into two parts:

On the left side, the original, but already pre-processed and eventually pre-filtered data are depicted. On the top left of the page, the omics dataset that should be analysed is selected together with the corresponding metadata file via the drop-down menus. If the two are not compatible to each other, an error will be printed. The “General information” box shortly explains the PCA concepts and provides some links to additional knowledge sources. In the “Analysis parameters” box the number of components (a value between 2 and 15) that should be used to calculate the PCA can be chosen. Per default, the “Scaling” check box is activated and can be deactivated, if the data don’t need any scaling. Below, several plots that present the PCA results using the above set parameters are given.

After triggering the feature selection process by activating the “Perform feature selection” button at the top-middle of the page, the reduced dataset is shown on the right side of the page. The number of components which are needed to get at least 80% explained variance for the given dataset are computed. When this number is set, the algorithm determines how many features per component should be used so that the resulting model gives the best result. All the remaining features that are not being used in any component will be removed from the dataset (the original dataset will not be changed) and the reduced dataset will be used to calculate the PCA result used for the plots. The “General information” and “Reduced dataset parameters” box above the plots provide some additional information about the reduced dataset and the general feature selection process.

Additionally, the reduced dataset can be downloaded in the .xlsx file format through the “Save reduced data” button, which will appear below the “Perform feature selection” button after the feature selection process has finished. Also, the reduced dataset will automatically be saved in the running Holomics application to be used later for the multi-omics analysis.

NOTE: if the feature selection process calculates that the PCA needs more than 15 components to reach the minimum of 80% of the explained variance, the feature selection process will be aborted, as the calculation would take too long. It is then recommended to use the PLS-DA function instead.


Visualisation of the PCA page. On the left side the original dataset can be inspected. On the right side the results are presented after the feature selection process.

Figure 4: Visualisation of the PCA page. On the left side the original dataset can be inspected. On the right side the results are presented after the feature selection process.

Partial Least Squares Discriminant Analysis

The Partial Least Squares Discriminant Analysis (PLS-DA) can also be used for single-omics datasets, but in comparison to PCA, PLS-DA is a supervised method where the information of the corresponding class (or label) is included in its computation.

On the top left of the page (Figure 5), the omics dataset that should be analysed and the corresponding metadata file are selected. If the two are not compatible, an error will be printed. The “General information” box shortly explains the concepts of the PLS-DA and provides some links to additional knowledge sources. In the “Analysis parameters” box, the number of components (a value between 2 and 15) can be adjusted and whether the dataset should be scaled (default) or not. The resulting plots are presented below. The plot output is similar to the PCA analysis, only that the PLS-DA does not provide a scree plot.

For feature selection, the “Perform feature selection” button in the middle of the page is to be clicked to start the feature selection process. The results will be presented on the right side of the page. Compared to the PCA feature selection process, the number of components that are set on the left side influences the algorithm. The algorithm tries 1 to n (number of components set) components on the provided dataset and chooses the number where the balanced error rate (BER) of the received model was the lowest. Additionally, the number of features per component is calculated and the dataset is reduced to keep only these features. The components and the scaling attribute cannot be changed for these plots.

Additionally, the reduced dataset can be downloaded in the .xlsx file format through the “Save reduced data” button, which will appear after the feature selection process has finished. Also, the reduced dataset will automatically be saved in the running Holomics application to be used later for the multi-omics analysis.


Visualisation of the PLS-DA page. On the left side the original dataset can be examined. On the right side the results after feature selection are presented. In this case, three components where calculated (number was set on the left side) and the error rates plot shows the performance of the models using the different number of components.

Figure 5: Visualisation of the PLS-DA page. On the left side the original dataset can be examined. On the right side the results after feature selection are presented. In this case, three components where calculated (number was set on the left side) and the error rates plot shows the performance of the models using the different number of components.

Pairwise omics analysis

For the pairwise omics analysis (integration of two different omics datasets), the sparse Partial Least Squares (sPLS) method is applied. The structure of the page (Figure 6) is the same as previously described in the single-omics analysis pages. On the top, the two datasets X and Y and the corresponding metadata file is selected.

On the left side some general information about sPLS is provided and the possibility to adjust the parameters is given. Here, the user can also switch between two algorithm modes “regression” and “canonical”. In mode “regression” dataset X will be used to try and predict dataset Y, so changing the datasets (X becomes Y and vice versa) leads to different results. With mode “canonical” the datasets are described to be interchangable. Thus, this mode is recommended to be used when there is no prior known dependency between the datasets. More information about the two modes is given in the mixOmics documentation.
Furthermore, instead of the feature selection button described in the PCA and PLS-DA chapter, there is a “Tune parameters” button in the middle of the page. The tuning process is similar to the feature selection process described in the PCA and PLS-DA chapter. It takes the by the user provided number of components and performs cross-validation to get the Q2 score per component. The tuning step determines the correlation between the actual and anticipated components by varying the amount of features chosen for each dataset. Finally, the last number of components having a total Q2 greater than 0.0975 is selected as the ideal number of components and the number of features with the highest correlation is the optimal number of features. The tuning algorithm of the sPLS tests 1 to n (number of components set on the left side) components and chooses one of these as the “ideal”. After tuning, the results using the tuned parameters will be visualised on the right side of the page. Some general information and the tuned analysis parameters are provided in the boxes above the plots.


Visualisation of the sPLS page depicting two omics datasets. On the left side, the datasets out of the single-omics analysis are used. On the right side the results of tuned datasets are presented.

Figure 6: Visualisation of the sPLS page depicting two omics datasets. On the left side, the datasets out of the single-omics analysis are used. On the right side the results of tuned datasets are presented.

Multi-omics analysis

The multi-omics analysis is done by applying DIABLO framework of mixOmics, which can take two or more datasets as its input and tries to find any correlations between the datasets. The structure of the page (Figure 7) is the same as described in the “Pairwise omics analysis” chapter.

On the top, the datasets are added to the “select the datasets” field and the corresponding metadata file is selected. Also here, the left side of the page some general information is provided and the possibility to adjust the analysis parameters is given in the “Analysis parameters” box. Here, the value for the design matrix can be adjusted. The design matrix indicates whether there are prior known or calculated correlations between the datasets, which should be taken into consideration. For now, Holomics only allows to set one correlation value over the entire matrix, which will be used for all pairwise correlations. This field is pre-filled with the lowest calculated correlation value, but can be adjusted by the user.

Again, the “Tune parameters” button in the middle of the page triggers the tuning process. This process works exactly like the one previously described for sPLS (calculates the ideal number of components and the number of features per dataset). The only difference is that here the best number of components is chosen based on the overall BER using the centroids.dist metric. For more information about the metric please have a look at the Distance Metrics post on the mixOmics website.
After tuning, the tuned parameters are visualised on the right side of the page. Some general information and the resulting tuned parameters are provided in the boxes above the plots.



Visualisation of the multi-omics page. On the left side, the datasets out of the single-omics analysis are used. On the right side the results of tuned datasets are presented.

Figure 7: Visualisation of the multi-omics page. On the left side, the datasets out of the single-omics analysis are used. On the right side the results of tuned datasets are presented.

Help pages

The help pages that can be found in the application provide short descriptions of the used plots as well as the feature selection and tuning processes. Additionally, there are several links to the mixOmics website or to other papers, where even more detailed information is provided, if desired.

Test datasets

Examples of transcriptomics, metabolomics and microbiomics data as well as a file with the labels and class information can be found as additioal files in our paper TODO cite. These omics data can be uploaded directly into the application after removing the first line with the table title in each case. In addition, exactly the same datasets were processed with Holomics in the papers’ described case study.

License

The Holomics package is distributed under GPL-3 (GNU GENERAL PUBLIC LICENSE version 3).

Cite

Munk, K., Ziemba, L., Ilina, D., Brader, G. & Molin, E.M. (2023). Holomics - an user-friendly R Shiny application for multi-omics data integration and analysis
R package version 1.1.0 https://CRAN.R-project.org/package=Holomics

Acknowledgements

Holomics has been developed at the AIT Austrian Institute of Technology GmbH within the research project OMICS 4.0, which is funded by the Federal State of Lower Austria as part of the FTI-Strategy Lower Austria. We also would like to thank all beta testers for their valuable input and advice.

Session info

#> R version 4.2.0 (2022-04-22 ucrt)
#> Platform: x86_64-w64-mingw32/x64 (64-bit)
#> Running under: Windows 10 x64 (build 22631)
#> 
#> Matrix products: default
#> 
#> locale:
#> [1] LC_COLLATE=C                    LC_CTYPE=German_Austria.utf8   
#> [3] LC_MONETARY=German_Austria.utf8 LC_NUMERIC=C                   
#> [5] LC_TIME=German_Austria.utf8    
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] Holomics_1.1.0
#> 
#> loaded via a namespace (and not attached):
#>  [1] Rcpp_1.0.12         cellranger_1.1.0    pillar_1.9.0       
#>  [4] bslib_0.6.1         compiler_4.2.0      later_1.3.2        
#>  [7] jquerylib_0.1.4     highr_0.10          shinyWidgets_0.8.2 
#> [10] tools_4.2.0         digest_0.6.34       jsonlite_1.8.8     
#> [13] evaluate_0.23       lifecycle_1.0.4     tibble_3.2.1       
#> [16] pkgconfig_2.0.3     rlang_1.1.3         shiny_1.8.0        
#> [19] cli_3.6.2           rstudioapi_0.15.0   yaml_2.3.8         
#> [22] golem_0.4.1         xfun_0.42           fastmap_1.1.1      
#> [25] dplyr_1.1.4         knitr_1.45          htmlwidgets_1.6.4  
#> [28] generics_0.1.3      sass_0.4.8          vctrs_0.6.5        
#> [31] attempt_0.3.1       tidyselect_1.2.0    shinyvalidate_0.1.3
#> [34] glue_1.7.0          R6_2.5.1            fansi_1.0.6        
#> [37] readxl_1.4.3        rmarkdown_2.26      bookdown_0.38      
#> [40] magrittr_2.0.3      ellipsis_0.3.2      promises_1.2.1     
#> [43] htmltools_0.5.7     xtable_1.8-4        mime_0.12          
#> [46] httpuv_1.6.14       config_0.3.2        utf8_1.2.4         
#> [49] visNetwork_2.1.2    cachem_1.0.8

References

Le Cao, Kim-Anh, Mary-Ellen Costello, Vanessa Anne Lakis, Francois Bartolo, Xin-Yi Chua, Remi Brazeilles, and Pascale Rondeau. 2016. “MixMC: A Multivariate Statistical Framework to Gain Insight into Microbial Communities.” PloS One 11 (8): e0160169.
Lê Cao, Kim-Anh. 2023. “mixOmics Vignette.” https://mixomicsteam.github.io/mixOmics-Vignette/.
Rohart, Florian, Benoit Gautier, Amrit Singh, and Kim-Anh Lê Cao. 2017. “mixOmics: An r Package for ‘Omics Feature Selection and Multiple Data Integration.” PLoS Computational Biology 13 (11): e1005752. http://mixomics.org/.