Skip to content

Commit

Permalink
Merge pull request BD2KGenomics#282 from BD2KGenomics/issues/281-upda…
Browse files Browse the repository at this point in the history
…te-cutadapt

Update CutAdapt to 1.18
  • Loading branch information
jvivian authored Oct 17, 2018
2 parents 344078e + cbc4b82 commit d0ba497
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cutadapt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \
build-essential \
python-pip

RUN pip install cutadapt
RUN pip install cutadapt==1.18

# Boilerplate
RUN mkdir /opt/cutadapt
Expand Down
2 changes: 1 addition & 1 deletion cutadapt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ runtime_fullpath = $(realpath runtime)
build_tool = runtime-container.DONE
git_commit ?= $(shell git log --pretty=oneline -n 1 -- ../cutadapt | cut -f1 -d " ")
name = quay.io/ucsc_cgl/cutadapt
tag = 1.9--${git_commit}
tag = 1.18--${git_commit}

build:
docker build -t ${name}:${tag} .
Expand Down
2 changes: 1 addition & 1 deletion cutadapt/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TestCutadapt(unittest.TestCase):

def test_docker_call(self):
out, err = check_docker_output(tool='quay.io/ucsc_cgl/cutadapt')
self.assertTrue('cutadapt version 1.9' in out)
self.assertTrue('cutadapt version 1.18' in out)

def check_docker_output(tool):
command = 'docker run ' + tool
Expand Down

0 comments on commit d0ba497

Please sign in to comment.