Skip to content

Commit aadf1a2

Browse files
authored
Merge pull request #177 from nf-core/patch
1.2.2 patch release to fix Conda environment and enable DSL1 in the nextflow.config
2 parents 1b3a832 + aa24db4 commit aadf1a2

File tree

5 files changed

+22
-10
lines changed

5 files changed

+22
-10
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/atacseq:1.2.1
38+
run: docker build --no-cache . -t nfcore/atacseq:1.2.2
3939

4040
- name: Pull docker image
4141
if: ${{ !env.GIT_DIFF }}
4242
run: |
4343
docker pull nfcore/atacseq:dev
44-
docker tag nfcore/atacseq:dev nfcore/atacseq:1.2.1
44+
docker tag nfcore/atacseq:dev nfcore/atacseq: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/atacseq:1.2.1
78+
run: docker build --no-cache . -t nfcore/atacseq:1.2.2
7979

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

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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] - 2022-04-29
7+
8+
* Minor patch release to fix Conda environment and enable DSL1 by default in the `nextflow.config`.
9+
### `Dependencies`
10+
11+
* Update r-base `3.6.2` -> `3.6.3`
12+
* Update r-xfun `0.15` -> `0.22`
13+
614
## [1.2.1] - 2020-07-29
715

816
* [#118](https://github.com/nf-core/atacseq/issues/118) - 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-atacseq-1.2.1/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-atacseq-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-atacseq-1.2.1 > nf-core-atacseq-1.2.1.yml
13+
RUN conda env export --name nf-core-atacseq-1.2.2 > nf-core-atacseq-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-atacseq-1.2.1
3+
name: nf-core-atacseq-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.22
2525
- conda-forge::gawk=5.1.0
2626
- conda-forge::pigz=2.3.4 ## Required for TrimGalore multi-threading
2727

nextflow.config

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
* Default config options for all environments.
66
*/
77

8+
// From nextflow version 22.04.0, DSL1 becomes the default mode
9+
// see here: https://www.nextflow.io/blog/2022/evolution-of-nextflow-runtime.html
10+
nextflow.enable.dsl = 1
11+
812
// Global default params, used in configs
913
params {
1014

@@ -99,7 +103,7 @@ params {
99103

100104
// Container slug. Stable releases should specify release tag!
101105
// Developmental code should specify :dev
102-
process.container = 'nfcore/atacseq:1.2.1'
106+
process.container = 'nfcore/atacseq:1.2.2'
103107

104108
// Load base.config by default for all pipelines
105109
includeConfig 'conf/base.config'

0 commit comments

Comments
 (0)