Hello, I am attempting to run a code analysis that works locally that uses R alongside Bioconductor Packages VariantAnnotation and Trio on a cloud computing service. To do so I am using Docker to containerize my environment (the website utilizes Docker in this fashion). I am having trouble installing the layers of dependencies for the Bioconductor Packages:
# FROM rocker/r-base
# RUN R -e "install.packages('BiocManager'); BiocManager::install(c('VariantAnnotation','Trio'))"
sessionInfo( )
I would really appreciate it if someone knew what I am doing wrong here and how to properly put the Bioconductor layers on top of this image. Thank you!
You show what you did, but not the output.