The shinyRER package was built to display the results of an RERConverge analysis. RERConverge correlates relative evolutionary rates of individual genes to a phenotype. Genes with a high rho correlation are ones whose evolution best correlates with the supplied phenotype. For each gene, a phylogenetic tree is constructed whose relative branch lengths to the average tree signal particular species with an accelerated or diminished evolutionary rate. The results of these analyses are contained in shipping_container.zip and are displayed in the web-based interactive shiny dashboard.
Follow these steps to install and run the application:
- A terminal/command line interface
- Internet connection
-
Install Docker using snap:
snap install docker
-
Pull the Docker image:
docker pull dbioinfo/shinyrer
-
Unzip the provided data:
unzip shipping_container.zip -d tmp/
This will extract the contents into a directory called
tmp/ -
Run the Docker container:
docker run -p 3838:3838 -v ./tmp:/data dbioinfo/shinyrer
This command:
- Maps port 3838 from the container to your local machine
- Mounts the local
tmp/directory to/datain the container
-
Access the application: Open your web browser and navigate to:
http://localhost:3838/shinyrer/
- If you encounter permission issues with Docker, you may need to run the commands with
sudo - Ensure ports are not already in use by another application