File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ jobs:
36
36
environment.yml
37
37
- name : Build new docker image
38
38
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
40
40
41
41
- name : Pull docker image
42
42
if : ${{ !env.MATCHED_FILES }}
43
43
run : |
44
44
docker pull qbicpipelines/rnadeseq:dev
45
- docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:dev
45
+ docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:2.1
46
46
47
47
- name : Install Nextflow
48
48
uses : nf-core/setup-nextflow@v1
@@ -88,13 +88,13 @@ jobs:
88
88
environment.yml
89
89
- name : Build new docker image
90
90
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
92
92
93
93
- name : Pull docker image
94
94
if : ${{ !env.MATCHED_FILES }}
95
95
run : |
96
96
docker pull qbicpipelines/rnadeseq:dev
97
- docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:dev
97
+ docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:2.1
98
98
99
99
- name : Install Nextflow
100
100
uses : nf-core/setup-nextflow@v1
Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ LABEL authors="Gisela Gabernet, Alexander Peltzer" \
3
3
description="Docker image containing all requirements for qbic-pipelines/rnadeseq pipeline"
4
4
COPY environment.yml /
5
5
# 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 && \
7
7
mamba clean --all --yes
8
8
RUN apt-get update -qq && \
9
9
apt-get install -y zip procps ghostscript
10
10
# 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
12
12
# 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
14
14
# Instruct R processes to use these empty files instead of clashing with a local config
15
15
RUN touch .Rprofile
16
16
RUN touch .Renviron
Original file line number Diff line number Diff line change 1
1
# You can use this file to create a conda environment for this pipeline:
2
2
# conda env create -f environment.yml
3
3
# use this to find packages: https://anaconda.org/
4
- name : qbic-pipelines-rnadeseq-dev
4
+ name : qbic-pipelines-rnadeseq-2.1
5
5
channels :
6
6
- bioconda
7
7
- conda-forge
Original file line number Diff line number Diff line change 1
1
process REPORT {
2
2
3
- container ' qbicpipelines/rnadeseq:dev '
3
+ container ' qbicpipelines/rnadeseq:2.1 '
4
4
5
5
input:
6
6
path gene_counts
You can’t perform that action at this time.
0 commit comments