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

[notebook] add GenotypeHarmonizer to ccg-workshop #4981

Merged
merged 1 commit into from
Dec 14, 2018
Rate limit · GitHub

Access has been restricted

You have triggered a rate limit.

Please wait a few minutes before you try again;
in some cases this may take up to an hour.

Merged
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
add GenotypeHarmonizer
  • Loading branch information
danking committed Dec 14, 2018
commit a4c744feccb03edca8b720c5d994afb3df7330c9
11 changes: 11 additions & 0 deletions notebook/images/ccg-workshop/Dockerfile
Original file line number Diff line number Diff line change
@@ -129,3 +129,14 @@ COPY stooges.csv .
RUN Rscript -e 'source("https://bioconductor.org/biocLite.R"); \
biocLite("Biostrings"); \
install.packages("dplyr")'

USER root
RUN apt-get update && apt-get install -y vim dos2unix
USER jovyan

RUN mkdir genotype-harmonizer && \
(cd genotype-harmonizer && \
wget https://molgenis26.gcc.rug.nl/downloads/GenotypeHarmonizer/GenotypeHarmonizer-1.4.20-dist.tar.gz && \
tar -xf GenotypeHarmonizer-1.4.20-dist.tar.gz && \
rm -rf GenotypeHarmonizer-1.4.20-dist.tar.gz && \
find . -name '*.sh' | xargs dos2unix)