Skip to content
This repository has been archived by the owner on Sep 30, 2022. It is now read-only.

Commit

Permalink
include LAVA software in r.sif container
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrei committed Sep 22, 2021
1 parent 05d174e commit 872e9ae
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions containers/r/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,15 @@ COPY /scripts/install_gcta.sh /tmp
RUN chmod +x /tmp/install_gcta.sh
RUN bash /tmp/install_gcta.sh

RUN R -e "install.packages('BiocManager')"
RUN R -e "BiocManager::install('snpStats')"
RUN R -e "devtools::install_git('https://github.com/josefin-werme/LAVA.git')"

WORKDIR /tools/
COPY /scripts/install_lava_partitioning.sh /tmp
RUN chmod +x /tmp/install_lava_partitioning.sh
RUN bash /tmp/install_lava_partitioning.sh


WORKDIR /tools

6 changes: 6 additions & 0 deletions scripts/install_lava_partitioning.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# the original software is https://github.com/cadeleeuw/lava-partitioning
# ofrei fork is a minor change in the makefile
git clone https://github.com/ofrei/lava-partitioning.git && cd lava-partitioning
make
cp ldblock /bin

0 comments on commit 872e9ae

Please sign in to comment.