|
|
|
# Prerequisites
|
|
|
|
|
|
|
|
ICoVeR is designed and implemented as a regular [R](http://www.r-project.org/) package. This guide was tested with [R](http://www.r-project.org/) v3.2.0 and [RStudio](http://www.rstudio.com/) v0.98.1102. Newer versions should work, please report any problems at the LIST [ICoVeR github page](https://git.list.lu/eScience/ICoVeR/). Further more, a modern browser is required. We have had most convenient experience with Chrome, but recent versions of Firefox worked as well.
|
|
|
|
|
|
|
|
To run our interactive interface, the OpenCPU R-package must be installed. To this end run the following command in R or RStudio.
|
|
|
|
|
|
|
|
```
|
|
|
|
# Bioconductor is required for the preprocessing of the fasta files
|
|
|
|
> source("http://bioconductor.org/biocLite.R")
|
|
|
|
> biocLite("Biostrings")
|
|
|
|
|
|
|
|
# OpenCPU is required to run the interactive binning tool
|
|
|
|
> install.packages("opencpu")
|
|
|
|
|
|
|
|
# devtools is required to install the interactive binning tool
|
|
|
|
> install.packages(devtools)
|
|
|
|
``` |
|
|
|
\ No newline at end of file |