If you are reading this, it is because you are interested in launching/running an instance of Shiny-phyloseq on your own computer. This requires that you have both a front end (browser) and a back end (R).


Front End

The Shiny-phyloseq front end, the GUI web application, will run on any modern web browser.

Supported:

Not Supported:

  • Older versions of Microsoft’s Internet Explorer

Back End

For running the Shiny-phyloseq back end, you must have the latest version of R installed on your system, as well as several additional R packages.

Manual Install Dependencies (Special Case Only)

If the previous code worked, you can skip this section.

The following R code will install required packages on your local system. Note that this assumes that you have an active internet connection and updated R installation.

install.packages("devtools")
devtools::source_url("https://raw.githubusercontent.com/joey711/shiny-phyloseq/master/install.R")

This code executes the same package install/update code that is used by the auto-installer in Shiny-phyloseq itself (and will be run if the previous “Auto-Install” instructions work for you). However, in special cases you may want to run this as a one-time batch event, for instance of a test of system compatibility. This is only recommended/necessary if you have never launched Shiny-phyloseq before and you want/need to perform/test installation ahead of launch. In addition, the web link provides the exact recommended dependency and installation code, in case your system has special requirements or you need to debug installation manually – for instance if you have special development versions of packages, or a non-standard installation of R. For most systems, this “manual install” is not necessary.