Skip to content

Commit 89419c0

Browse files
author
Joe Brown
committed
bumps version
1 parent c42a454 commit 89419c0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ 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
7+
RUN /opt/conda/envs/env/bin/pip install --no-cache-dir covviz==1.1.1

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.1.0'
28+
container = 'brwnj/covviz:v1.1.1'
2929
withLabel: 'indexcov' {
3030
container = 'brentp/smoove:v0.2.3'
3131
memory = 8.GB
@@ -63,7 +63,7 @@ manifest {
6363
name = 'brwnj/covviz'
6464
author = 'Joe Brown'
6565
description = "find large, coverage-based variations on chromosomes"
66-
version = '1.1.0'
66+
version = '1.1.1'
6767
nextflowVersion = '>=0.32.0'
6868
homePage = 'https://github.com/brwnj/covviz'
6969
mainScript = 'main.nf'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
EMAIL = 'brwnjm@gmail.com'
1919
AUTHOR = 'Joe Brown'
2020
REQUIRES_PYTHON = '>=3.6.0'
21-
VERSION = '1.1.0'
21+
VERSION = '1.1.1'
2222

2323
# What packages are required for this module to be executed?
2424
REQUIRED = [

0 commit comments

Comments
 (0)