Skip to content

Commit

Permalink
finemap image (#150)
Browse files Browse the repository at this point in the history
* finemap image

* remove unnecc packages

* Update Dockerfile

* add libgomp1

* eof
  • Loading branch information
hopedisastro authored Jun 17, 2024
1 parent 1070d61 commit 9f80b87
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions images.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ expansionhunter_bw2 = 'b85cba004fba4e0223e632fae576bc7fad0da804'
fastp = '0.23.4'
fastqe = '0.3.1'
fastqc = '0.11.9'
finemap = '1.4.2'
fraser = '1.12.1'
gatk = '4.2.6.1'
gatk_gcnv = '4.5.0.0'
Expand Down
16 changes: 16 additions & 0 deletions images/finemap/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM debian:bullseye-slim

WORKDIR /tmp

# Install dev libraries
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
libgomp1 \
&& apt-get clean

RUN curl -L http://www.christianbenner.com/finemap_v1.4.2_x86_64.tgz -o finemap.tgz \
&& tar zxvf finemap.tgz && mv finemap_v1.4.2_x86_64/finemap_v1.4.2_x86_64 /usr/local/bin/finemap \
&& chmod +x /usr/local/bin/finemap && rm -rf /tmp/*

CMD ["bash"]

0 comments on commit 9f80b87

Please sign in to comment.