Skip to content

Commit c5639a6

Browse files
authored
Merge pull request #193 from WackerO/dev
Bumped again all versions
2 parents 747799c + 4c8ad99 commit c5639a6

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
environment.yml
3737
- name: Build new docker image
3838
if: env.MATCHED_FILES
39-
run: docker build --no-cache . -t qbicpipelines/rnadeseq:dev
39+
run: docker build --no-cache . -t qbicpipelines/rnadeseq:2.1
4040

4141
- name: Pull docker image
4242
if: ${{ !env.MATCHED_FILES }}
4343
run: |
4444
docker pull qbicpipelines/rnadeseq:dev
45-
docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:dev
45+
docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:2.1
4646
4747
- name: Install Nextflow
4848
uses: nf-core/setup-nextflow@v1
@@ -88,13 +88,13 @@ jobs:
8888
environment.yml
8989
- name: Build new docker image
9090
if: env.MATCHED_FILES
91-
run: docker build --no-cache . -t qbicpipelines/rnadeseq:dev
91+
run: docker build --no-cache . -t qbicpipelines/rnadeseq:2.1
9292

9393
- name: Pull docker image
9494
if: ${{ !env.MATCHED_FILES }}
9595
run: |
9696
docker pull qbicpipelines/rnadeseq:dev
97-
docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:dev
97+
docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:2.1
9898
9999
- name: Install Nextflow
100100
uses: nf-core/setup-nextflow@v1

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ LABEL authors="Gisela Gabernet, Alexander Peltzer" \
33
description="Docker image containing all requirements for qbic-pipelines/rnadeseq pipeline"
44
COPY environment.yml /
55
#RUN conda install -c conda-forge mamba
6-
RUN mamba env create --file /environment.yml -p /opt/conda/envs/qbic-pipelines-rnadeseq-dev && \
6+
RUN mamba env create --file /environment.yml -p /opt/conda/envs/qbic-pipelines-rnadeseq-2.1 && \
77
mamba clean --all --yes
88
RUN apt-get update -qq && \
99
apt-get install -y zip procps ghostscript
1010
# Add conda installation dir to PATH
11-
ENV PATH /opt/conda/envs/qbic-pipelines-rnadeseq-dev/bin:$PATH
11+
ENV PATH /opt/conda/envs/qbic-pipelines-rnadeseq-2.1/bin:$PATH
1212
# Dump the details of the installed packates to a file for posterity
13-
RUN mamba env export --name qbic-pipelines-rnadeseq-dev > qbic-pipelines-rnadeseq-dev.yml
13+
RUN mamba env export --name qbic-pipelines-rnadeseq-2.1 > qbic-pipelines-rnadeseq-2.1.yml
1414
# Instruct R processes to use these empty files instead of clashing with a local config
1515
RUN touch .Rprofile
1616
RUN touch .Renviron

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# You can use this file to create a conda environment for this pipeline:
22
# conda env create -f environment.yml
33
# use this to find packages: https://anaconda.org/
4-
name: qbic-pipelines-rnadeseq-dev
4+
name: qbic-pipelines-rnadeseq-2.1
55
channels:
66
- bioconda
77
- conda-forge

modules/local/report.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
process REPORT {
22

3-
container 'qbicpipelines/rnadeseq:dev'
3+
container 'qbicpipelines/rnadeseq:2.1'
44

55
input:
66
path gene_counts

0 commit comments

Comments
 (0)