Skip to content

Commit 6924b66

Browse files
authored
Merge pull request #209 from nf-core/patch
1.2.2 patch release to fix Conda environment
2 parents 0f487ed + 801bc53 commit 6924b66

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
3636
- name: Build new docker image
3737
if: env.GIT_DIFF
38-
run: docker build --no-cache . -t nfcore/chipseq:1.2.1
38+
run: docker build --no-cache . -t nfcore/chipseq:1.2.2
3939

4040
- name: Pull docker image
4141
if: ${{ !env.GIT_DIFF }}
4242
run: |
4343
docker pull nfcore/chipseq:dev
44-
docker tag nfcore/chipseq:dev nfcore/chipseq:1.2.1
44+
docker tag nfcore/chipseq:dev nfcore/chipseq:1.2.2
4545
4646
- name: Install Nextflow
4747
run: |
@@ -75,13 +75,13 @@ jobs:
7575
7676
- name: Build new docker image
7777
if: env.GIT_DIFF
78-
run: docker build --no-cache . -t nfcore/chipseq:1.2.1
78+
run: docker build --no-cache . -t nfcore/chipseq:1.2.2
7979

8080
- name: Pull docker image
8181
if: ${{ !env.GIT_DIFF }}
8282
run: |
8383
docker pull nfcore/chipseq:dev
84-
docker tag nfcore/chipseq:dev nfcore/chipseq:1.2.1
84+
docker tag nfcore/chipseq:dev nfcore/chipseq:1.2.2
8585
8686
- name: Install Nextflow
8787
run: |

CHANGELOG.md

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

6+
## [1.2.2] - 2021-04-22
7+
8+
* [#206](https://github.com/nf-core/chipseq/issues/206) - Minor patch release to fix Conda environment
9+
10+
### `Dependencies`
11+
12+
* Update r-base `3.6.2` -> `3.6.3`
13+
* Update r-xfun `0.15` -> `0.20`
14+
615
## [1.2.1] - 2020-07-29
716

817
* [#171](https://github.com/nf-core/chipseq/issues/171) - Minor patch release to update pipeline schema

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ COPY environment.yml /
77
RUN conda env create -f /environment.yml && conda clean -a
88

99
# Add conda installation dir to PATH (instead of doing 'conda activate')
10-
ENV PATH /opt/conda/envs/nf-core-chipseq-1.2.1/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-chipseq-1.2.2/bin:$PATH
1111

1212
# Dump the details of the installed packages to a file for posterity
13-
RUN conda env export --name nf-core-chipseq-1.2.1 > nf-core-chipseq-1.2.1.yml
13+
RUN conda env export --name nf-core-chipseq-1.2.2 > nf-core-chipseq-1.2.2.yml
1414

1515
# Instruct R processes to use these empty files instead of clashing with a local version
1616
RUN touch .Rprofile

environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# You can use this file to create a conda environment for this pipeline:
22
# conda env create -f environment.yml
3-
name: nf-core-chipseq-1.2.1
3+
name: nf-core-chipseq-1.2.2
44
channels:
55
- conda-forge
66
- bioconda
@@ -11,7 +11,7 @@ dependencies:
1111
- conda-forge::markdown=3.2.2
1212
- conda-forge::pymdown-extensions=7.1
1313
- conda-forge::pygments=2.6.1
14-
- conda-forge::r-base=3.6.2
14+
- conda-forge::r-base=3.6.3
1515
- conda-forge::r-optparse=1.6.6
1616
- conda-forge::r-rcolorbrewer=1.1_2
1717
- conda-forge::r-reshape2=1.4.4
@@ -21,7 +21,7 @@ dependencies:
2121
- conda-forge::r-pheatmap=1.0.12
2222
- conda-forge::r-lattice=0.20_41
2323
- conda-forge::r-upsetr=1.4.0
24-
- conda-forge::r-xfun=0.15
24+
- conda-forge::r-xfun=0.20
2525
- conda-forge::gawk=5.1.0
2626
- conda-forge::pigz=2.3.4 ## Required for TrimGalore multi-threading
2727

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ params {
9696

9797
// Container slug. Stable releases should specify release tag!
9898
// Developmental code should specify :dev
99-
process.container = 'nfcore/chipseq:1.2.1'
99+
process.container = 'nfcore/chipseq:1.2.2'
100100

101101
// Load base.config by default for all pipelines
102102
includeConfig 'conf/base.config'
@@ -169,7 +169,7 @@ manifest {
169169
description = 'ChIP-seq peak-calling and differential analysis pipeline.'
170170
mainScript = 'main.nf'
171171
nextflowVersion = '>=19.10.0'
172-
version = '1.2.1'
172+
version = '1.2.2'
173173
}
174174

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

0 commit comments

Comments
 (0)