Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for v0.4 #279

Merged
merged 5 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
# rendered notebooks
^inst/rmd/.*\.html$

# Docker folder
# Docker items
^Dockerfile$
^.dockerignore$
^docker$

# development
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: scpcaTools
Type: Package
Title: Single cell data tools for ScPCA
Version: 0.3.2
Version: 0.4.0
Authors@R: c(
person("Ally", "Hawkins",
email = "[email protected]",
Expand All @@ -25,7 +25,7 @@ Description: Tools for processing single cell data associated with the
License: BSD_3_clause + file LICENSE
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.3.1
RoxygenNote: 7.3.2
Depends:
R (>= 4.3.0)
Imports:
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ LABEL org.opencontainers.image.source https://github.com/AlexsLemonade/scpcaTool
ENV RENV_CONFIG_CACHE_ENABLED FALSE
RUN Rscript -e "install.packages(c('renv'))"

# Install Rhtslib manually for renv/Bioc incompatibility (possibly temporary)
RUN Rscript -e "BiocManager::install('Rhtslib')"

COPY docker/renv_slim.lock renv.lock
# restore renv and remove cache files
RUN Rscript -e 'renv::restore()'\
Expand Down
Loading
Loading