Skip to content

Commit

Permalink
Bump release
Browse files Browse the repository at this point in the history
  • Loading branch information
jvivian committed May 30, 2019
1 parent 91878e0 commit 7d07db8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-release.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

VERSION=0.9.0a
VERSION=0.10.0a

# Build and push Docker
docker build -t jvivian/gene-outlier-detection:${VERSION} ./docker
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM continuumio/anaconda3
RUN apt-get update && apt-get install -y libhdf5-serial-dev build-essential gcc g++
RUN conda install -y mkl-service numpy scipy theano pygpu

RUN pip install gene-outlier-detection==0.9.0a
RUN pip install gene-outlier-detection==0.10.0a

RUN mkdir /data
WORKDIR /data
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gene-outlier-detection"
version = "0.9.0a"
version = "0.10.0a"
description = "A Bayesian model for identifying gene expression outliers for individual single samples (N-of-1) when compared to a cohort of background datasets."
authors = ["John Vivian <jtvivian@gmail.com>"]

Expand Down
2 changes: 1 addition & 1 deletion toil/toil-outlier-detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def run_outlier_model(job, sample_info, args, cores=3, memory="15G"):
parameters.append("--disable-iter")
if args.gene_list:
parameters.extend(["--gene-list", "/data/gene-list.txt"])
image = "jvivian/gene-outlier-detection:0.9.0a"
image = "jvivian/gene-outlier-detection:0.10.0a"
apiDockerCall(
job=job,
image=image,
Expand Down

0 comments on commit 7d07db8

Please sign in to comment.