Skip to content

Commit e08830f

Browse files
authored
Merge pull request #79 from ggabernet/bugfix
Bugfix boxplots requested genes
2 parents d9be7b2 + c785472 commit e08830f

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
3232
- name: Build new docker image
3333
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
3535

3636
- name: Pull docker image
3737
if: ${{ !env.GIT_DIFF }}
3838
run: |
3939
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
4141
4242
- name: Install Nextflow
4343
run: |
@@ -69,13 +69,13 @@ jobs:
6969
7070
- name: Build new docker image
7171
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
7373

7474
- name: Pull docker image
7575
if: ${{ !env.GIT_DIFF }}
7676
run: |
7777
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
7979
8080
- name: Install Nextflow
8181
run: |

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# qbic-pipelines/rnadeseq: Changelog
22

3-
## 1.3.1 - dev
3+
## 1.3.1 - Almond Blossoms hotfix
44

55
### Added
66

7-
- Bump versions to 1.3.1dev
7+
- Bump versions to 1.3.1
88

99
### Fixed
1010

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ RUN apt-get update -qq && \
99
apt-get install -y zip procps ghostscript
1010

1111
# 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
1313

1414
# 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
1616

1717
# Instruct R processes to use these empty files instead of clashing with a local config
1818
RUN touch .Rprofile

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-1.3.1dev
4+
name: qbic-pipelines-rnadeseq-1.3.1
55
channels:
66
- conda-forge
77
- bioconda

nextflow.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ params {
4646

4747
// Container slug. Stable releases should specify release tag!
4848
// Developmental code should specify :dev
49-
process.container = 'qbicpipelines/rnadeseq:dev'
49+
process.container = 'qbicpipelines/rnadeseq:1.3.1'
5050

5151
// Load base.config by default for all pipelines
5252
includeConfig 'conf/base.config'
@@ -102,7 +102,7 @@ manifest {
102102
description = 'Downstream differential gene expression analysis with DESeq2'
103103
mainScript = 'main.nf'
104104
nextflowVersion = '>=19.04'
105-
version = '1.3.1dev'
105+
version = '1.3.1'
106106
}
107107

108108
// Function to ensure that resource requirements don't go beyond

0 commit comments

Comments
 (0)