This project is hosted at https://a-sol.shinyapps.io/shinyvolcano/. It allows users to interactively explore differential expression data and create and export publication-quality volcano plots. The app comes pre-loaded with three example datasets, but users are able to upload their own as a .csv file.
Hovering over a point on the volcano plot shows the name of the gene. Clicking a point on the volcano plot highlights the point and adds the gene to the table displaying fold-change and p-value information. You can search for a specific gene using the search bar below the table on the Gene Table tab.
To use this app with your own data, upload a .csv file containing differential expression data in the Data Upload & Plot Export tab. The file must contain three columns, labeled "gene", "log2FoldChange", and "padj" containing gene names, fold change information, and the adjusted p-value, respectively.
An example file ("ExampleUserInput.csv") is included in the git repo.
This application can be used via Docker. Instructions for doing so can be found below.
- Download and install Docker compatible with your operating system.
- Open PowerShell (Windows) or Terminal (Mac) and enter the following commands:
docker pull alxsully/shiny-volcano:latest
docker run -p 3838:3838 alxsully/shiny-volcano:latest
- Open a web browser and type localhost:3838 (Windows) or 0.0.0.0:3838 into the search bar.
If you have any questions, I can be reached at [email protected]