Skip to content

Commit d3991a2

Browse files
authored
version back to dev (#284)
1 parent e8b4ae1 commit d3991a2

7 files changed

Lines changed: 21 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
environment.yml
4040
- name: Build new docker image
4141
if: env.MATCHED_FILES
42-
run: docker build --no-cache . -t ghcr.io/qbic-pipelines/rnadeseq:2.6
42+
run: docker build --no-cache . -t ghcr.io/qbic-pipelines/rnadeseq:dev
4343

4444
# Change the version above and the third version below before/after release
4545
- name: Pull docker image
4646
if: ${{ !env.MATCHED_FILES }}
4747
run: |
4848
docker pull ghcr.io/qbic-pipelines/rnadeseq:dev
49-
docker tag ghcr.io/qbic-pipelines/rnadeseq:dev ghcr.io/qbic-pipelines/rnadeseq:2.6
49+
docker tag ghcr.io/qbic-pipelines/rnadeseq:dev ghcr.io/qbic-pipelines/rnadeseq:dev
5050
5151
- name: Install Nextflow
5252
uses: nf-core/setup-nextflow@v1
@@ -93,14 +93,14 @@ jobs:
9393
environment.yml
9494
- name: Build new docker image
9595
if: env.MATCHED_FILES
96-
run: docker build --no-cache . -t ghcr.io/qbic-pipelines/rnadeseq:2.6
96+
run: docker build --no-cache . -t ghcr.io/qbic-pipelines/rnadeseq:dev
9797

9898
# Change the version above and the third version below before/after release
9999
- name: Pull docker image
100100
if: ${{ !env.MATCHED_FILES }}
101101
run: |
102102
docker pull ghcr.io/qbic-pipelines/rnadeseq:dev
103-
docker tag ghcr.io/qbic-pipelines/rnadeseq:dev ghcr.io/qbic-pipelines/rnadeseq:2.6
103+
docker tag ghcr.io/qbic-pipelines/rnadeseq:dev ghcr.io/qbic-pipelines/rnadeseq:dev
104104
105105
- name: Install Nextflow
106106
uses: nf-core/setup-nextflow@v1

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## dev
7+
8+
### Added
9+
10+
### Changed
11+
12+
- [#284](https://github.com/qbic-pipelines/rnadeseq/pull/284) Release version back to dev
13+
14+
### Fixed
15+
616
## 2.6 - Tree Roots
717

818
### Added

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ LABEL org.opencontainers.image.authors="Gisela Gabernet, Alexander Peltzer, Oska
55
LABEL org.opencontainers.image.licenses=MIT
66
COPY environment.yml /
77
#RUN conda install -c conda-forge mamba
8-
RUN mamba env create --file /environment.yml -p /opt/conda/envs/qbic-pipelines-rnadeseq-2.6 && \
8+
RUN mamba env create --file /environment.yml -p /opt/conda/envs/qbic-pipelines-rnadeseq-dev && \
99
mamba clean --all --yes
1010
RUN apt-get update -qq && \
1111
apt-get install -y zip procps ghostscript
1212
# Add conda installation dir to PATH
13-
ENV PATH=/opt/conda/envs/qbic-pipelines-rnadeseq-2.6/bin:$PATH
13+
ENV PATH=/opt/conda/envs/qbic-pipelines-rnadeseq-dev/bin:$PATH
1414
# Dump the details of the installed packates to a file for posterity
15-
RUN mamba env export --name qbic-pipelines-rnadeseq-2.6 > qbic-pipelines-rnadeseq-2.6.yml
15+
RUN mamba env export --name qbic-pipelines-rnadeseq-dev > qbic-pipelines-rnadeseq-dev.yml
1616
# Instruct R processes to use these empty files instead of clashing with a local config
1717
RUN touch .Rprofile
1818
RUN touch .Renviron

assets/multiqc_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
report_comment: >
2-
This report has been generated by the <a href="https://github.com/qbic-pipelines/rnadeseq/releases/tag/2.6" target="_blank">qbic-pipelines/rnadeseq</a>
2+
This report has been generated by the <a href="https://github.com/qbic-pipelines/rnadeseq/tree/dev" target="_blank">qbic-pipelines/rnadeseq</a>
33
analysis pipeline. For information about how to interpret these results, please see the
44
<a href="https://github.com/qbic-pipelines/rnadeseq/blob/master/docs/output.md" target="_blank">documentation</a>.
55
report_section_order:

environment.yml

Lines changed: 1 addition & 1 deletion
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-2.6
4+
name: qbic-pipelines-rnadeseq-dev
55
channels:
66
- bioconda
77
- conda-forge

modules/local/report.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
process REPORT {
22

3-
container 'ghcr.io/qbic-pipelines/rnadeseq:2.6'
3+
container 'ghcr.io/qbic-pipelines/rnadeseq:dev'
44

55
input:
66
path gene_counts

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ manifest {
277277
description = """Differential gene expression analysis and pathway analysis of RNAseq data"""
278278
mainScript = 'main.nf'
279279
nextflowVersion = '!>=23.04.0'
280-
version = '2.6'
280+
version = 'dev'
281281
doi = ''
282282
}
283283

0 commit comments

Comments
 (0)