Skip to content

Commit

Permalink
Add in get-apt installation for bedtools and samtools. Move away from…
Browse files Browse the repository at this point in the history
… trying with Conda
  • Loading branch information
milnus committed Oct 14, 2021
1 parent 765538f commit b32c2a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ RUN pip3 install .

# Override some of the dependencies with the hard-coded versions
RUN pip3 install -r requirements-dev.txt
RUN conda install -c bioconda bedtools=2.29.9
RUN conda install -c bioconda samtools=1.9

RUN apt-get update && apt-get install -y \
bedtools=2.29.9 \
samtools=1.9 \
&& rm -rf /var/lib/apt/lists/*
#bedtools==2.29.2
# TODO - add docker container with bedtools - biocontainers?
#samtools==1.9
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Dependencies, with versions explicitly declared for development and testing
biopython==1.79
pybedtools==0.8.2
conda
# Packages that are not dependencies but used for building or testing
pylint

0 comments on commit b32c2a6

Please sign in to comment.