File tree 5 files changed +11
-11
lines changed
5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
31
31
32
32
- name : Build new docker image
33
33
if : env.GIT_DIFF
34
- run : docker build --no-cache . -t qbicpipelines/rnadeseq:dev
34
+ run : docker build --no-cache . -t qbicpipelines/rnadeseq:1.3.1
35
35
36
36
- name : Pull docker image
37
37
if : ${{ !env.GIT_DIFF }}
38
38
run : |
39
39
docker pull qbicpipelines/rnadeseq:dev
40
- docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:dev
40
+ docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:1.3.1
41
41
42
42
- name : Install Nextflow
43
43
run : |
@@ -69,13 +69,13 @@ jobs:
69
69
70
70
- name : Build new docker image
71
71
if : env.GIT_DIFF
72
- run : docker build --no-cache . -t qbicpipelines/rnadeseq:dev
72
+ run : docker build --no-cache . -t qbicpipelines/rnadeseq:1.3.1
73
73
74
74
- name : Pull docker image
75
75
if : ${{ !env.GIT_DIFF }}
76
76
run : |
77
77
docker pull qbicpipelines/rnadeseq:dev
78
- docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:dev
78
+ docker tag qbicpipelines/rnadeseq:dev qbicpipelines/rnadeseq:1.3.1
79
79
80
80
- name : Install Nextflow
81
81
run : |
Original file line number Diff line number Diff line change 1
1
# qbic-pipelines/rnadeseq: Changelog
2
2
3
- ## 1.3.1 - dev
3
+ ## 1.3.1 - Almond Blossoms hotfix
4
4
5
5
### Added
6
6
7
- - Bump versions to 1.3.1dev
7
+ - Bump versions to 1.3.1
8
8
9
9
### Fixed
10
10
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ RUN apt-get update -qq && \
9
9
apt-get install -y zip procps ghostscript
10
10
11
11
# Add conda installation dir to PATH
12
- ENV PATH /opt/conda/envs/qbic-pipelines-rnadeseq-1.3.1dev /bin:$PATH
12
+ ENV PATH /opt/conda/envs/qbic-pipelines-rnadeseq-1.3.1 /bin:$PATH
13
13
14
14
# Dump the details of the installed packates to a file for posterity
15
- RUN conda env export --name qbic-pipelines-rnadeseq-1.3.1dev > qbic-pipelines-rnadeseq-1.3.1dev .yml
15
+ RUN conda env export --name qbic-pipelines-rnadeseq-1.3.1 > qbic-pipelines-rnadeseq-1.3.1 .yml
16
16
17
17
# Instruct R processes to use these empty files instead of clashing with a local config
18
18
RUN touch .Rprofile
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-1.3.1dev
4
+ name : qbic-pipelines-rnadeseq-1.3.1
5
5
channels :
6
6
- conda-forge
7
7
- bioconda
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ params {
46
46
47
47
// Container slug. Stable releases should specify release tag!
48
48
// Developmental code should specify :dev
49
- process. container = ' qbicpipelines/rnadeseq:dev '
49
+ process. container = ' qbicpipelines/rnadeseq:1.3.1 '
50
50
51
51
// Load base.config by default for all pipelines
52
52
includeConfig ' conf/base.config'
@@ -102,7 +102,7 @@ manifest {
102
102
description = ' Downstream differential gene expression analysis with DESeq2'
103
103
mainScript = ' main.nf'
104
104
nextflowVersion = ' >=19.04'
105
- version = ' 1.3.1dev '
105
+ version = ' 1.3.1 '
106
106
}
107
107
108
108
// Function to ensure that resource requirements don't go beyond
You can’t perform that action at this time.
0 commit comments