Skip to content

Commit

Permalink
update dockerfile for macos and update github workflow for config aux…
Browse files Browse the repository at this point in the history
… files
  • Loading branch information
cmaceves committed Jun 17, 2024
1 parent cccb744 commit be4aabc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ jobs:
- name: install htslib
run: |
cd htslib-1.10.2/
curl -O http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
curl -O http://git.savannah.gnu.org/cgit/config.git/plain/config.guess
chmod +x config.guess config.sub
autoheader
autoconf
./configure
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ RUN cd root/ &&\
make install
# bwa
RUN cd root/ &&\
wget https://github.com/lh3/bwa/archive/v0.7.17.tar.gz &&\
tar xvf v0.7.17.tar.gz &&\
cd bwa-0.7.17/ &&\
wget https://github.com/lh3/bwa/archive/v0.7.18.tar.gz &&\
tar xvf v0.7.18.tar.gz &&\
cd bwa-0.7.18/ &&\
make &&\
cd ../ &&\
rm v0.7.17.tar.gz
ENV PATH /root/bwa-0.7.17:$PATH
rm v0.7.18.tar.gz
ENV PATH /root/bwa-0.7.18:$PATH
# Snakemake
RUN pip3 install pandas snakemake

0 comments on commit be4aabc

Please sign in to comment.