Skip to content

Commit 82c0466

Browse files
authored
Added pysam docker, for use elsewhere (#121)
1 parent e93e52d commit 82c0466

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Utilities/Dockers/Pysam/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
FROM python:3.11.2
2+
RUN pip install pysam==0.20.0

Utilities/Dockers/Python-Data-Slim/dockerfile renamed to Utilities/Dockers/Python-Data-Slim/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.9.9
2-
RUN pip install pandas==1.3.4 \
3-
numpy==1.21.4 \
2+
RUN pip install pandas==1.3.4 \
3+
numpy==1.21.4 \
44
scipy==1.7.2 \
55
firecloud==0.16.32 \
66
fsspec==2022.7.1 \

Utilities/Dockers/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Docker Files
22

3-
This directory contains `dockerimage` files and descriptions of what each is intended for. Here is a description of how
3+
This directory contains `Dockerfile` files and descriptions of what each is intended for. Here is a description of how
44
the fields are populated:
55
* Directory: where to find the Dockerfile, under `palantir-workflows/Utilities/Dockers/`.
66
* Description: description of the packages installed on the docker.
@@ -31,6 +31,16 @@ includes some minimal Python tools (pandas) for data processing.
3131
* Version Notes:
3232
* 1.0: Versions are `samtools` 1.16.1.
3333

34+
## pysam
35+
36+
* Directory: Pysam
37+
* Description: A docker image containing Python with the [Pysam](https://pysam.readthedocs.io/en/latest/api.html) package.
38+
* Location: `us.gcr.io/broad-dsde-methods/pysam:v1`
39+
* Used By: ...
40+
* Usage: `python <<CODE [CODE HERE] CODE`
41+
* Version Notes:
42+
* 1.0: Versions are `python3` 3.11.2, `pysam` 0.20.0.
43+
3444
## python-data-slim
3545

3646
* Directory: Python-Data-Slim

0 commit comments

Comments
 (0)