Skip to content

Commit fb00dcd

Browse files
author
Joe Brown
committed
bumps version
1 parent eda20a2 commit fb00dcd

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ RUN apt-get update && apt-get install -y procps
44
RUN conda create -n env -c conda-forge python=3.7 numpy>=1.16.2 lzstring>=1.0.4 jinja2>=2.10.1
55
RUN echo "source activate env" > ~/.bashrc
66
ENV PATH /opt/conda/envs/env/bin:$PATH
7-
RUN /opt/conda/envs/env/bin/pip install --no-cache-dir covviz==1.2.2
7+
RUN /opt/conda/envs/env/bin/pip install --no-cache-dir covviz==1.3.0
88
RUN wget -qO /usr/bin/goleft https://github.com/brentp/goleft/releases/download/v0.2.3/goleft_linux64
99
RUN chmod +x /usr/bin/goleft

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ process {
2525
errorStrategy = { task.exitStatus in [1,143,137,104,134,139] ? 'retry' : 'terminate' }
2626
maxRetries = 3
2727
maxErrors = '-1'
28-
container = 'brwnj/covviz:v1.2.2'
28+
container = 'brwnj/covviz:v1.3.0'
2929
withLabel: 'indexcov' {
3030
memory = { 8.GB * task.attempt }
3131
cache = 'deep'
@@ -62,7 +62,7 @@ manifest {
6262
name = 'brwnj/covviz'
6363
author = 'Joe Brown'
6464
description = "find large, coverage-based variations on chromosomes"
65-
version = '1.2.2'
65+
version = '1.3.0'
6666
nextflowVersion = '>=0.32.0'
6767
homePage = 'https://github.com/brwnj/covviz'
6868
mainScript = 'main.nf'

wdl/covviz.wdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ task run_indexcov {
1818
cpu: 1
1919
disks: "local-disk " + disk_size + " HDD"
2020
preemptible: 2
21-
docker: "brwnj/covviz:v1.2.1"
21+
docker: "brwnj/covviz:v1.3.0"
2222
}
2323
output {
2424
Array[File] indexcov_pngs = glob("${project}/${project}-indexcov-*.png")
@@ -62,7 +62,7 @@ task run_covviz {
6262
cpu: 1
6363
disks: "local-disk " + disk_size + " HDD"
6464
preemptible: 2
65-
docker: "brwnj/covviz:v1.2.1"
65+
docker: "brwnj/covviz:v1.3.0"
6666
}
6767
output {
6868
File covviz_report = "covviz_report.html"

0 commit comments

Comments
 (0)