-
Notifications
You must be signed in to change notification settings - Fork 0
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 #269 from AlexsLemonade/jashapiro/reduce-merge-memory
Update to Bioc3.18 and reduce merge memory
- Loading branch information
Showing
23 changed files
with
900 additions
and
812 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
options(BioC_mirror = "https://packagemanager.posit.co/bioconductor") | ||
options(BIOCONDUCTOR_CONFIG_FILE = "https://packagemanager.posit.co/bioconductor/config.yaml") | ||
# Configure BioCManager to use Posit Public Package Manager: | ||
options(BioC_mirror = "https://p3m.dev/bioconductor") | ||
options(BIOCONDUCTOR_CONFIG_FILE = "https://p3m.dev/bioconductor/config.yaml") | ||
|
||
# activate renv | ||
source("renv/activate.R") |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
#' scpcaTools: Useful tools for analysis of single-cell RNA seq counts data | ||
#' | ||
#' The scpcaTools package contains a set of tools for working with single-cell and single-nuclei RNA-seq counts data. | ||
#' Mainly, this package can work with data that has been produced using Alevin, Alevin-Fry, Cellranger, or Kallisto. | ||
#' Mainly, this package can work with data that has been produced using Alevin, Alevin-Fry, Cell Ranger, or Kallisto. | ||
#' | ||
#' | ||
#' @docType package | ||
#' @name scpcaTools-package | ||
#' @aliases scpcaTools-package | ||
#' | ||
#' @import methods | ||
#' @import SingleCellExperiment | ||
#' @import stringr | ||
NULL | ||
"_PACKAGE" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM rocker/r-ver:4.3.2 | ||
FROM rocker/r-ver:4.3.3 | ||
LABEL maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source https://github.com/AlexsLemonade/scpcaTools | ||
|
||
|
@@ -13,10 +13,9 @@ RUN Rscript -e "install.packages(c('remotes', 'renv'))" | |
|
||
WORKDIR /usr/local/renv | ||
COPY renv.lock renv.lock | ||
# restore with PPM repo set for binary installs | ||
RUN Rscript -e "renv::consent(provided = TRUE); \ | ||
renv::restore(repos = 'https://packagemanager.posit.co/cran/latest')" && \ | ||
rm -rf ~/.local/share/renv && \ | ||
# restore renv and remove cache files | ||
RUN Rscript -e "renv::restore()" && \ | ||
rm -rf ~/.cache/R/renv && \ | ||
rm -rf /tmp/downloaded_packages && \ | ||
rm -rf /tmp/Rtmp* | ||
|
||
|
@@ -27,7 +26,7 @@ RUN Rscript -e "proc <- basilisk::basiliskStart(env = zellkonverter::zellkonvert | |
|
||
#### Python packages | ||
COPY requirements.txt requirements.txt | ||
RUN pip install -r requirements.txt && pip cache purge | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
|
||
########################## | ||
|
Oops, something went wrong.