Skip to content

Commit

Permalink
fix: downgrade numpy to 1.21.0 for DCC docker
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Oct 17, 2024
1 parent c82d42a commit 6c5af93
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/biowulf/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ containers:
ciri: "docker://nciccbr/charlie_ciri2:v1"
clear: "docker://nciccbr/ccbr_clear:2"
cutadapt: "docker://nciccbr/charlie_cutadapt_fqfilter:v1"
dcc: "docker://nciccbr/charlie_dcc:v0.2.0"
dcc: "docker://nciccbr/charlie_dcc:v0.2.1"
fastqc: "docker://nciccbr/ccrgb_qctools:v4.0"
mapsplice: "docker://cgrlab/mapsplice2:latest"
multiqc: "docker://nciccbr/ccbr_multiqc_1.15:v1"
Expand Down
2 changes: 1 addition & 1 deletion config/fnlcr/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ containers:
ciri: "docker://nciccbr/charlie_ciri2:v1"
clear: "docker://nciccbr/ccbr_clear:2"
cutadapt: "docker://nciccbr/charlie_cutadapt_fqfilter:v1"
dcc: "docker://nciccbr/charlie_dcc:v0.2.0"
dcc: "docker://nciccbr/charlie_dcc:v0.2.1"
fastqc: "docker://nciccbr/ccrgb_qctools:v4.0"
mapsplice: "docker://cgrlab/mapsplice2:latest"
multiqc: "docker://nciccbr/ccbr_multiqc_1.15:v1"
Expand Down
1 change: 1 addition & 0 deletions docker/dcc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ WORKDIR /opt2
RUN wget https://github.com/dieterich-lab/DCC/archive/${DCC_VERSION}.zip -O dcc.zip && \
unzip dcc.zip && \
cd DCC-${DCC_VERSION} && \
pip install numpy==1.21.0 && \
python setup.py install
RUN which DCC && DCC -h

Expand Down
2 changes: 1 addition & 1 deletion docker/dcc/meta.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dockerhub_namespace: nciccbr
image_name: charlie_dcc
version: v0.2.0
version: v0.2.1
container: "$(dockerhub_namespace)/$(image_name):$(version)"

0 comments on commit 6c5af93

Please sign in to comment.