Skip to content

Commit

Permalink
add vitessce docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewwbutler committed Apr 12, 2021
1 parent 8b8789e commit da737f4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ src/*.dll
**/seurat-objects/
**/seurat_objects/
**/vitessce/
!docker/vitessce/
**/.snakemake
**/.snakemake_timestamp
**/.wget-hsts
Expand Down
16 changes: 16 additions & 0 deletions docker/vitessce/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Dockerfile for building references
FROM satijalab/seurat:4.0.1

# Install other R dependencies
RUN R --no-echo --no-restore --no-save -e "install.packages('feather')"

# Install Azimuth (0.3.2)
RUN R --no-echo --no-restore --no-save -e "remotes::install_github('immunogenomics/presto')"
RUN R --no-echo --no-restore --no-save -e "install.packages(c('DT', 'googlesheets4', 'shinyBS', 'shinydashboard', 'shinyjs'))"
RUN R --no-echo --no-restore --no-save -e "BiocManager::install('glmGamPoi')"
RUN R --no-echo --no-restore --no-save -e "remotes::install_github('satijalab/azimuth', ref = 'v0.3.0', dependencies = FALSE)"

# Install python dependencies
RUN pip3 install scanpy
RUN pip3 install zarr

0 comments on commit da737f4

Please sign in to comment.