RStudio server for doing post processing of rnaseq data using the StarSalmon R-package
93
This Dockerfile is used to setup an RStudio server that can be used to do post processing of RNA-seq data using the StarSalmon package.
https://hub.docker.com/repository/docker/benjaminvincentlab/rserver-postproc-rnaseq
In our cluster environment, the rstudio server often doesn't terminate cleanly. The leftover processes affect the binding of volumes for subsequent RServer containers. Additionally processes created by mclapply do not end with the RServer termination. rserver_handler starts a monitor that periodically checks to see if the RServer is done running. If so, it finds all of the processes in the RServer session id (sid) and sends them a sigterm. Then it terminates itself.
docker build -t benjaminvincentlab/rserver-postproc-rnaseq:3.6.1.4.0 .
docker run -e PASSWORD=12qwaszx --rm -p 8787:8787 -v ~/Desktop:/home/rstudio benjaminvincentlab/rserver-postproc-rnaseq:3.6.1.4.0 8787
Then direct browser to localhost:8787.
v.w.x.y.z
vwx is the version of R.
w is the version of the rserver it uses.
z is the version of this Dockerfile.
git tag -a 3.6.1.4.0 -m "Upadted readme"; git push -u origin --tags
Content type
Image
Digest
Size
1.2 GB
Last updated
over 6 years ago
docker pull benjaminvincentlab/rserver-postproc-rnaseq:3.6.1.4.0