From Chris Miller's example
10K+
Basic docker image for ad-hoc genomic analyses - combines a lot of the tools that are handy for exploring data on a ubuntu base image.
python3 (if you are using LSF_DOCKER_PRESERVE_ENVIRONMENT=false, just python will work)source activate python2, then pythondevlib <- paste('/gscuser/cmiller/usr/lib/R',paste(R.version$major,R.version$minor,sep="."),sep="")
if (!file.exists(devlib))
dir.create(devlib)
x <- .libPaths()
.libPaths(c(devlib,x))
rm(x,devlib)```
This is great for quickly prototyping, but don't forget that if you're sharing code with others, you'll need to create a new container with the proper libraries installed so they can also use it!
Content type
Image
Digest
Size
2.5 GB
Last updated
over 6 years ago
docker pull dhspence/docker-genomic-analysis