rivet

RIVET (Ribosomal Investigation and Visualization to Evaluate Translation)

RIVET is a simple to use R-shiny based graphical user interface to automate the statistical analysis of RNA sequencing data and microarray data generated by either polysome profiling or ribosome footprinting. RIVET requires a tab-delimited or comma-delimited text file of counts data (commonly generated in many RNA seq computational pipelines) or background corrected and normalized microarray data. The main goal of RIVET is to make data analysis of data generated by genome-wide translatome experiments accessible to bench scientists.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

Deployment

For local deployment, all app files including ui.R, server.R, global.R along with www folder should be located within the working directory. To launch from the commandline, open a terminal and begin an R session within the working directory.

To install required packages, start R and enter:

# for cran packages
>install.packages('shiny')
>install.packages('ggplot2')
>install.packages('gplots')
>install.packages('RColorBrewer')
>install.packages('shinythemes')
>install.packages('shinyjs')

# for bioconductor packages
>source("https://bioconductor.org/biocLite.R")
>biocLite('limma')
>biocLite('edgeR')
>biocLite('Biobase')

To launch the RIVET app locally, execute the following in terminal (while not in R session) where ~/shinyapp should be replaced with the path to your application:

Rscript -e 'library(methods); shiny::runApp("~/shinyapp", launch.browser=TRUE)'

Alternatively, you can open any of the rivet “*.R” files in an R IDE and select “Run App” from the top command bar.

Built With

Example Use and Citations

For example RIVET use cases and citations please refer to the Wiki.

Authors

License

This project will be licensed soon.

Acknowledgments