-
Notifications
You must be signed in to change notification settings - Fork 63
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 #369 from thibautjombart/release/2.1.11
Prepare for CRAN release
- Loading branch information
Showing
16 changed files
with
66 additions
and
63 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,3 +1,3 @@ | ||
Version: 2.1.10 | ||
Date: 2023-01-25 22:44:37 UTC | ||
SHA: 67d986732c578ff8f65884b4ca622c39f36da995 | ||
Version: 2.1.11 | ||
Date: 2025-02-06 21:23:37 UTC | ||
SHA: 43a3b10c137ff05d1282f44eeab5d25418a7f841 |
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 +1 @@ | ||
This update fixes an error thrown by LLVM in C23 mode by removing the `typedef short bool` definition in `snpbin.h` | ||
This fixes a buffer overflow that was negatively affecting dartR.base |
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,9 +1,9 @@ | ||
FROM rocker/drd | ||
FROM rocker/r-devel-san | ||
|
||
MAINTAINER Thibaut Jombart <[email protected]> | ||
|
||
RUN apt-get update && apt-get upgrade -y | ||
RUN apt-get install libssl-dev libxml2-dev pandoc pandoc-citeproc libblas-dev liblapack-dev git qpdf -y | ||
RUN apt-get install -y libcurl4-openssl-dev libssl-dev libfontconfig1-dev libxml2-dev libharfbuzz-dev libfribidi-dev libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev gdal-bin proj-bin libgdal-dev libproj-dev libgmp3-dev jags libfftw3-dev | ||
|
||
## add guest user | ||
|
||
|
@@ -15,35 +15,24 @@ RUN chmod a+rw /usr/local/lib/R/site-library -R | |
|
||
## install CRAN packages | ||
|
||
RUN echo 'options(download.file.method = "libcurl", repos = c(CRAN = "https://cran.ma.imperial.ac.uk"))' > ~/.Rprofile | ||
# RUN echo 'options(download.file.method = "libcurl", repos = c(CRAN = "https://cran.ma.imperial.ac.uk"))' > ~/.Rprofile | ||
|
||
RUN r -e "install.packages('devtools')" \ | ||
&& r -e "install.packages('roxygen2')" \ | ||
&& r -e "install.packages('testthat')" \ | ||
&& r -e "install.packages('rmarkdown')" \ | ||
&& r -e "install.packages('adegenet', dependencies = c('Depends', 'Imports'))" \ | ||
&& r -e "install.packages('pegas')" \ | ||
&& r -e "install.packages('hierfstat')" \ | ||
&& r -e "install.packages('poppr')" \ | ||
&& r -e "install.packages('akima')" \ | ||
&& r -e "install.packages('maps')" \ | ||
&& r -e "install.packages('splancs')" \ | ||
&& r -e "install.packages('tripack')" | ||
&& r -e "install.packages('adegenet', dependencies = TRUE)" | ||
|
||
|
||
|
||
## install devel packages (github) | ||
|
||
RUN r -e "devtools::install_github('thibautjombart/adegenet')" | ||
RUN r -e 'install.packages("BiocManager")' \ | ||
&& r -e 'BiocManager::install("SNPRelate")' \ | ||
&& r -e 'install.packages("dartR.base")' | ||
|
||
|
||
## clone repos to get sources | ||
RUN apt-get install -y git | ||
|
||
RUN su guest | ||
RUN mkdir ~/dev | ||
WORKDIR /home/guest/dev | ||
|
||
RUN git clone https://github.com/thibautjombart/adegenet | ||
COPY . . | ||
|
||
WORKDIR /home/guest/ | ||
RUN ls='ls --color=auto' | ||
CMD Rscript -e 'library(dartR.base); gl.pcoa(testset.gl)' |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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