Skip to content

Commit

Permalink
Install samtools/htslib from APT (#99)
Browse files Browse the repository at this point in the history
* Install samtools/htslib from APT

... instead of compiling

* Install samtools/htslib from APT for workflows

* Use sudo when installing with APT
  • Loading branch information
kimrutherford authored Aug 17, 2023
1 parent 3ef4c14 commit 15b6620
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install and set up transvar
run: |
. transvar_env_vars.sh
bash install_transvar_dependencies.sh
sudo apt install -y samtools tabix
bash set_up_transvar.sh
- name: Update file
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install and set up transvar
run: |
. transvar_env_vars.sh
bash install_transvar_dependencies.sh
sudo apt install -y samtools tabix
bash set_up_transvar.sh
- name: Run tests
# -W because of transvar
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ COPY ./*.sh /api/
COPY ./config.json /api/
COPY ./data /api/data

RUN bash install_transvar_dependencies.sh
RUN apt install -y samtools tabix

CMD ["bash", "docker_start.sh"]

0 comments on commit 15b6620

Please sign in to comment.