README.md

download R build
status license-lightgrey.svg) dependencies

This repository contains the R package which is hosted on Bioconductor and our development GitHub versions. Go to www.mixomics.org for information on how to use mixOmics.

Installation

(macOS users only: Ensure you have installed XQuartz first.)

From Bioconductor (recommended)

The best way to install mixOmics is using Bioconductor. You can see the landing page for the release version of mixOmics on Bioconductor here. Make sure you have the latest R version and the latest BiocManager package installed following these instructions.

## install BiocManager if not installed
if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

## install mixOmics
BiocManager::install('mixOmics')

## load mixOmics
library(mixOmics) 

From Github

Bioconductor versions are updated twice a year, between these updates you can download the latest version of mixOmics from Github. Note that this latest version of mixOmics is under development and may not be stable, check the gitHub page for releases which have passed package testing.

## install devtools
install.packages("devtools")

## install latest github version of mixOmics
devtools::install_github("mixOmicsTeam/mixOmics")

From Docker container

You can install our latest stable Github version of mixOmics via our Docker container. You can do this by downloading and using the Docker desktop application or via the command line as described below.

Click to expand

Note: this requires root privileges

1) Install Docker following instructions at https://docs.docker.com/docker-for-mac/install/

if your OS is not compatible with the latest version download an older version of Docker from the following link:

Then open your system’s command line interface (e.g. Terminal for MacOS and Command Promot for Windows) for the following steps.

MacOS users only: you will need to launch Docker Desktop to activate your root privileges before running any docker commands from the command line.

2) Pull mixOmics container

docker pull mixomicsteam/mixomics

3) Ensure it is installed

The following command lists the running images:

docker images

This lists the installed images. The output should be something similar to the following:

$ docker images 
  > REPOSITORY                       TAG       IMAGE ID       CREATED         SIZE
  > mixomicsteam/mixomics            latest    e755393ac247   2 weeks ago     4.38GB

4) Activate the container

Running the following command activates the container. You must change your_password to a custom password of your own. You can also customise ports (8787:8787) if desired/necessary. see https://docs.docker.com/config/containers/container-networking/ for details.

docker run -e PASSWORD=your_password --rm -p 8787:8787 mixomicsteam/mixomics

5) Run

In your web browser, go to http://localhost:8787/ (change port if necessary) and login with the following credentials:

username: rstudio password: (your_password set in step 4)

6) Inspect/stop

The following command lists the running containers:

sudo docker ps

The output should be something similar to the following:

$ sudo docker ps
  > CONTAINER ID   IMAGE                   COMMAND   CREATED         STATUS         PORTS                    NAMES
  > f14b0bc28326   mixomicsteam/mixomics   "/init"   7 minutes ago   Up 7 minutes   0.0.0.0:8787->8787/tcp   compassionate_mestorf

The listed image ID can then be used to stop the container (here f14b0bc28326)

docker stop f14b0bc28326

Contribution

We welcome community contributions concordant with our code of conduct. We strongly recommend adhering to Bioconductor’s coding guide for software consistency if you wish to contribute to mixOmics R codes.

Bug reports and pull requests

To report a bug (or offer a solution for a bug!) visit: https://github.com/mixOmicsTeam/mixOmics/issues. We fully welcome and appreciate well-formatted and detailed pull requests. Preferably with tests on our datasets.

Set up development environment

install.packages("renv", Ncpus=4)
install.packages("devtools", Ncpus=4)

# restore the renv environment
renv::restore()

# or to initialise renv
# renv::init(bioconductor = TRUE)

# update the renv environment if needed
# renv::snapshot()

# test installation
devtools::install()
devtools::test()

# complete package check (takes a while)
devtools::check()

Discussion forum

We wish to make our discussions transparent so please direct your analysis questions to our discussion forum https://mixomics-users.discourse.group. This forum is aimed to host discussions on choices of multivariate analyses, as well as comments and suggestions to improve the package. We hope to create an active community of users, data analysts, developers and R programmers alike! Thank you!

What’s New

March 2025

Also explored potential bugs in handling of near zero variance in block.splsda #352 and of perf() giving incorrect per-class error rates #355.

November 2024

The performance assessment and parameter tuning workflow has been streamlined as described in issue #343

October 2024

** Version 6.30.0 **

Bioconductor release version 6.30.0 released end of October 2024 Minor bug fixes and updated deprecated code and unit tests, no major code changes and no changes to user experience of mixOmics.

March 2022

July 2021

April 2020

March 2020

January 2020



mixOmicsTeam/mixOmics documentation built on April 13, 2025, 11:59 p.m.