Skip to content

Commit

Permalink
Merge pull request #77 from NSAPH-Software/JOSS
Browse files Browse the repository at this point in the history
Joss updates
  • Loading branch information
Naeemkh authored Nov 21, 2023
2 parents d953753 + 1e9ea19 commit fd7bf7e
Show file tree
Hide file tree
Showing 57 changed files with 346 additions and 53 deletions.
4 changes: 3 additions & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ reference:
articles:
- title: Introduction
navbar: Introduction
contents: [Standard-Gaussian-Processes, Nearest-neighbor-Gaussian-Processes]
contents: [Standard-Gaussian-Processes,
Nearest-neighbor-Gaussian-Processes,
A-Note-on-Choosing-Hyperparameters]

- title: Collabration
navbar: Collabration
Expand Down
52 changes: 30 additions & 22 deletions docker_singularity/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,30 +1,38 @@
FROM rocker/verse:4.1.0
FROM rocker/verse:4.2.3

LABEL org.opencontainers.image.authors="nkhoshnevis@g.harvard.edu"

RUN install2.r --error --repo https://mran.microsoft.com/snapshot/2022-05-26 \
data.table \
xgboost \
stats \
MASS \
spatstat.geom \
logger \
Rcpp \
RcppArmadillo \
ggplot2 \
rlang \
covr
# Linux internal commands
RUN apt-get update
RUN apt-get install -y --no-install-recommends vim
RUN apt-get install -y --no-install-recommends zsh
RUN apt-get install -y --no-install-recommends libgsl-dev
RUN apt-get clean

# R package installation from CRAN
RUN R -e "install.packages(c( \
'covr', \
'roxygen2', \
'devtools'), repos='https://cloud.r-project.org')"

# R package installation from CRAN
RUN R -e "install.packages(c( \
'parallel', \
'xgboost', \
'stats', \
'MASS', \
'spatstat.geom', \
'logger', \
'Rcpp', \
'RcppArmadillo', \
'ggplot2', \
'cowplot', \
'rlang', \
'Rfast', \
'SuperLearner', \
'wCorr'), repos='https://cloud.r-project.org')"

ENV RENV_VERSION 0.15.1
RUN R -e "install.packages('remotes', repos = c(CRAN = 'https://cloud.r-project.org'))"
RUN R -e "remotes::install_github('rstudio/renv@${RENV_VERSION}')"


# Linux internal commands
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
vim \
zsh \
&& apt-get clean

#
1 change: 1 addition & 0 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/CODE_OF_CONDUCT.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 20 additions & 19 deletions docs/LICENSE.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fd7bf7e

Please sign in to comment.