-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
332 additions
and
218 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ Authors@R: c(person("Gregoire", "Versmee", email = "[email protected]", | |
person("Laura", "Versmee", role = "aut"), | ||
person("Mikael", "Dusenne", role = "aut"), | ||
person("Niloofar", "Jalali", role = "aut")) | ||
Description: This package has been created to help users exploring, and downloading phenotic data from the database of Genotypes and Phenotypes (dbGaP) | ||
Description: This package has been created to help users exploring, downloading and decrypting phenotic and genomic data from the database of Genotypes and Phenotypes (dbGaP) | ||
URL: https://github.com/gversmee/dbgap2x | ||
BugReports: https://github.com/gversmee/dbgap2x/issues | ||
Depends: | ||
|
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,21 +1,21 @@ | ||
FROM alpine/git as git | ||
FROM alpine/git:1.0.7 as git | ||
|
||
WORKDIR /root | ||
|
||
RUN git clone https://github.com/gversmee/dbgap2x.git | ||
|
||
FROM jupyter/base-notebook | ||
FROM jupyter/base-notebook:38f518466042 | ||
|
||
LABEL maintainer="Gregoire Versmee <[email protected]>" | ||
|
||
RUN conda install --quiet --yes \ | ||
'r-base=3.4.1' \ | ||
'r-irkernel=0.8*' \ | ||
'r-rcurl=1.95*' \ | ||
'r-xml' \ | ||
'r-data.table' \ | ||
'r-httr' \ | ||
'r-rlist' && \ | ||
'r-irkernel=0.8.*' \ | ||
'r-rcurl=1.95.*' \ | ||
'r-xml=3.98*' \ | ||
'r-data.table=1.12.*' \ | ||
'r-httr=1.*' \ | ||
'r-rlist=0.4.*' && \ | ||
conda clean --all -f -y && \ | ||
fix-permissions $CONDA_DIR | ||
|
||
|
@@ -53,8 +53,9 @@ COPY --from=git /root/dbgap2x $HOME/dbgap2x | |
RUN Rscript -e "install.packages('$HOME/dbgap2x', repos = NULL, type = 'source')" && \ | ||
chown -R $NB_USER $HOME/dbgap2x && \ | ||
chmod -R 4775 $HOME/dbgap2x && \ | ||
jupyter trust $HOME/dbgap2x/dbgap2x.ipynb && \ | ||
rm -rf $HOME/.local && \ | ||
fix-permissions $HOME | ||
|
||
RUN jupyter trust $HOME/dbgap2x/dbgap2x.ipynb | ||
|
||
WORKDIR $HOME/dbgap2x |
Binary file not shown.
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
Oops, something went wrong.