the Reference for the Heart failure Transcriptome
ReHeaT is a user friendly portal to explore, analyze and download the transcriptional consensus signature of human end-stage heart failure (HF-CS).
The HF-CS is based on a meta-analysis of 16 independent studies. Corresponding code is available here.
There are basically three ways of how to access ReHeaT:
-
You can access a live version running here on the server from
shinyapps.io
. -
You can run the app locally in an interactive R session. Before make sure you have all packages installed listed in
sub/global.R
.
shiny::runGitHub("reheat", "saezlab")
- You can run the app locally by cloning this repository. All required
packages can be easily installed using the
renv
package.
# install all required packages using the renv package
renv::restore()
shiny::runApp()