BiclustGUI
The BiclustGUI R package, a graphical user interface (GUI) developed as a plug-in for R Commander, is an envelope package designed to serve as a platform from which several biclustering algorithms as well as diagnostics tools can be accessed.
Short Summary
Installation
#############################################
## AUTOMATIC INSTALLATION FOR CRAN RELEASE ##
#############################################
setRepositories(ind=c(1:5))
install.packages("RcmdrPlugin.BiclustGUI")
####################################################
## AUTOMATIC INSTALLATION FOR DEVELOPMENT RELEASE ##
####################################################
## R-Forge ##
setRepositories(ind=c(1:5))
# Biclust GUI - In Development Version #
install.packages("RcmdrPlugin.BiclustGUI",
repos="http://R-Forge.R-project.org")
# Biclust GUI (ISA2 VERSION) - In Development Version #
install.packages("RcmdrPlugin.BiclustGUI.Extra",
repos="http://R-Forge.R-project.org")
## GitHub ##
setRepositories(ind=c(1:5))
install.packages("devtools")
devtools::install_github("ewouddt/RcmdrPlugin.BiclustGUI")
#################################################
## MANUAL INSTALLATION ##
#################################################
## PACKAGES AVAILABLE ON CRAN ##
install.packages("biclust")
install.packages("BcDiag")
install.packages("superbiclust")
install.packages("Rcmdr")
install.packages("isa2")
install.packages("s4vd")
install.packages("BiBitR")
install.packages("gplots")
install.packages("viridis")
## PACKAGES AVAILABLE ON BIOCONDUCTOR ##
source("http://bioconductor.org/biocLite.R")
biocLite("iBBiG")
biocLite("fabia")
biocLite("rqubic")
biocLite("BicARE")
## BiclustGUI - CRAN Release Version ##
install.packages("RcmdrPlugin.BiclustGUI")
## Biclust GUI - R-Forge - In Development Version ##
install.packages("RcmdrPlugin.BiclustGUI",
repos="http://R-Forge.R-project.org")
## Biclust GUI (ISA2 VERSION) - R-Forge - In Development Version ##
install.packages("RcmdrPlugin.BiclustGUI.Extra",
repos="http://R-Forge.R-project.org")
## Biclust GUI - GitHub - In Development Version ##
install.packages("devtools")
devtools::install_github("ewouddt/RcmdrPlugin.BiclustGUI")
Once all dependencies are installed, to launch the BiclustGUI, open R and use the library(RcmdrPlugin.BiclustGUI) command.
