Skip to content
Snippets Groups Projects
Commit 93f2be99 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

cudatapt: add cutadapt v1.15 for docker and nf

parent 110a92e1
No related branches found
No related tags found
No related merge requests found
FROM alpine:3.8
MAINTAINER Laurent Modolo
ENV CUTADAPT_VERSION=1.15
ENV PACKAGES bash \
python3 \
python3-dev \
musl-dev \
gcc
RUN apk update && \
apk add ${PACKAGES}
RUN pip3 install cutadapt==${CUTADAPT_VERSION}
#!/bin/sh
docker build src/docker_modules/cutadapt/1.15 -t 'cutadapt:1.15'
...@@ -4,7 +4,7 @@ profiles { ...@@ -4,7 +4,7 @@ profiles {
docker.enabled = true docker.enabled = true
process { process {
withName: adaptor_removal { withName: adaptor_removal {
container = "cutadapt:1.14" container = "cutadapt:1.15"
} }
} }
} }
......
...@@ -4,7 +4,7 @@ profiles { ...@@ -4,7 +4,7 @@ profiles {
docker.enabled = true docker.enabled = true
process { process {
withName: adaptor_removal { withName: adaptor_removal {
container = "cutadapt:1.14" container = "cutadapt:1.15"
} }
} }
} }
......
...@@ -4,7 +4,7 @@ profiles { ...@@ -4,7 +4,7 @@ profiles {
docker.enabled = true docker.enabled = true
process { process {
withName: trimming { withName: trimming {
container = "cutadapt:1.14" container = "cutadapt:1.15"
} }
} }
} }
......
...@@ -4,7 +4,7 @@ profiles { ...@@ -4,7 +4,7 @@ profiles {
docker.enabled = true docker.enabled = true
process { process {
withName: trimming { withName: trimming {
container = "cutadapt:1.14" container = "cutadapt:1.15"
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment