We have created a Docker image that will display an RStudio window on your local browser where you can run the sCCIgen commands and use the interactive Shiny app.
Place the files that you will use for the simulation into a known folder
We need to create a directory to place the expression data and other files used while working with sCCIgen.
You can use terminal command or your preferred method to create a new directory. If you already have a previous data directory, skip this step.
Start the image
Run the following command to start the interactive sCCIgen image, the -v option will connect your data folder with the docker working directory to read files while running RStudio.
docker run -e PASSWORD=mypassword -p 8787:8787 -v /path/on/host:/home/rstudio/ sccigenpackage/sccigen
Note that you need to replace the “/path/on/host” with the absolute path to your data directory that contains the files you want the docker image to have access to (e.g. Users/joselynchavez/Documents/my_wd/:/home/rstudio/).