File tree Expand file tree Collapse file tree 5 files changed +20
-11
lines changed Expand file tree Collapse file tree 5 files changed +20
-11
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ jobs:
35
35
36
36
- name : Build new docker image
37
37
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
39
39
40
40
- name : Pull docker image
41
41
if : ${{ !env.GIT_DIFF }}
42
42
run : |
43
43
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
45
45
46
46
- name : Install Nextflow
47
47
run : |
@@ -75,13 +75,13 @@ jobs:
75
75
76
76
- name : Build new docker image
77
77
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
79
79
80
80
- name : Pull docker image
81
81
if : ${{ !env.GIT_DIFF }}
82
82
run : |
83
83
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
85
85
86
86
- name : Install Nextflow
87
87
run : |
Original file line number Diff line number Diff line change 3
3
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
4
4
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
5
5
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
+
6
15
## [ 1.2.1] - 2020-07-29
7
16
8
17
* [ #171 ] ( https://github.com/nf-core/chipseq/issues/171 ) - Minor patch release to update pipeline schema
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ COPY environment.yml /
7
7
RUN conda env create -f /environment.yml && conda clean -a
8
8
9
9
# 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
11
11
12
12
# 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
14
14
15
15
# Instruct R processes to use these empty files instead of clashing with a local version
16
16
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
- name : nf-core-chipseq-1.2.1
3
+ name : nf-core-chipseq-1.2.2
4
4
channels :
5
5
- conda-forge
6
6
- bioconda
@@ -11,7 +11,7 @@ dependencies:
11
11
- conda-forge::markdown=3.2.2
12
12
- conda-forge::pymdown-extensions=7.1
13
13
- conda-forge::pygments=2.6.1
14
- - conda-forge::r-base=3.6.2
14
+ - conda-forge::r-base=3.6.3
15
15
- conda-forge::r-optparse=1.6.6
16
16
- conda-forge::r-rcolorbrewer=1.1_2
17
17
- conda-forge::r-reshape2=1.4.4
@@ -21,7 +21,7 @@ dependencies:
21
21
- conda-forge::r-pheatmap=1.0.12
22
22
- conda-forge::r-lattice=0.20_41
23
23
- conda-forge::r-upsetr=1.4.0
24
- - conda-forge::r-xfun=0.15
24
+ - conda-forge::r-xfun=0.20
25
25
- conda-forge::gawk=5.1.0
26
26
- conda-forge::pigz=2.3.4 # # Required for TrimGalore multi-threading
27
27
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ params {
96
96
97
97
// Container slug. Stable releases should specify release tag!
98
98
// Developmental code should specify :dev
99
- process. container = ' nfcore/chipseq:1.2.1 '
99
+ process. container = ' nfcore/chipseq:1.2.2 '
100
100
101
101
// Load base.config by default for all pipelines
102
102
includeConfig ' conf/base.config'
@@ -169,7 +169,7 @@ manifest {
169
169
description = ' ChIP-seq peak-calling and differential analysis pipeline.'
170
170
mainScript = ' main.nf'
171
171
nextflowVersion = ' >=19.10.0'
172
- version = ' 1.2.1 '
172
+ version = ' 1.2.2 '
173
173
}
174
174
175
175
// Function to ensure that resource requirements don't go beyond
You can’t perform that action at this time.
0 commit comments