-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from chrarnold/main
New version of GRaNIE integration
- Loading branch information
Showing
3 changed files
with
146 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,6 @@ | |
FROM bioconductor/bioconductor_docker:devel-R-4.4.1 | ||
|
||
|
||
# Install required dependencies for the R packages | ||
#RUN apt-get update && apt-get install -y \ | ||
# libcurl4-openssl-dev \ | ||
# libxml2-dev \ | ||
# libssl-dev \ | ||
# libcairo2-dev | ||
# libxt-dev \ | ||
# libopenblas-dev | ||
|
||
|
||
#Install R packages | ||
RUN R -e "install.packages(c('devtools'))" | ||
|
||
|
@@ -21,19 +11,14 @@ WORKDIR /workspace | |
# Default command | ||
CMD ["R"] | ||
|
||
RUN R -e "remotes::install_version('Matrix', version = '1.6-3')" | ||
|
||
#Version 1.9.4 of GRaNIE | ||
RUN R -e "devtools::install_gitlab('grp-zaugg/GRaNIE@855bf3def33ad7af9353db79c7e21c9279035fb8', host = 'git.embl.de', subdir = 'src/GRaNIE', dependencies = TRUE, upgrade = 'never')" | ||
|
||
#Version 0.2.1 of GRaNIEverse | ||
RUN R -e "devtools::install_gitlab('grp-zaugg/GRaNIEverse@3224b042f25f0085eeaf9194042bcb89103ea962', host = 'git.embl.de', upgrade = 'never', dependencies = TRUE)" | ||
|
||
#There seems to be an incompatibility with the Matrix and irlba package, downgrading Matrix seems to work | ||
|
||
RUN R -e "install.packages('irlba',type='source')" | ||
|
||
RUN R -e "BiocManager::install(c('BSgenome.Hsapiens.UCSC.hg38', 'EnsDb.Hsapiens.v86', 'EnsDb.Mmusculus.v79', 'BSgenome.Mmusculus.UCSC.mm39'))" | ||
#Version 1.9.4 of GRaNIE. | ||
RUN R -e "devtools::install_gitlab('grp-zaugg/[email protected]', host = 'git.embl.de', subdir = 'src/GRaNIE', dependencies = TRUE, upgrade = 'never')" | ||
|
||
#Version 0.3.1 of GRaNIEverse | ||
RUN R -e "devtools::install_gitlab('grp-zaugg/[email protected]', host = 'git.embl.de', upgrade = 'never', dependencies = TRUE)" | ||
|
||
#There is an incompatibility with the Matrix and irlba package, see https://github.com/satijalab/seurat/issues/8000 | ||
RUN R -e "install.packages('irlba',type='source', rebuild = TRUE)" | ||
|
||
# biovizbase is only needed to create the ATAC assay along with annotation | ||
RUN R -e "BiocManager::install(c('BSgenome.Hsapiens.UCSC.hg38', 'EnsDb.Hsapiens.v86', 'EnsDb.Mmusculus.v79', 'BSgenome.Mmusculus.UCSC.mm39', 'biovizBase', 'Signac', 'glmGamPoi'))" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters