File tree Expand file tree Collapse file tree 5 files changed +15
-11
lines changed Expand file tree Collapse file tree 5 files changed +15
-11
lines changed Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff line change 33The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
44and 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+
610## [ 1.2.1] - 2020-07-29
711
812* [ #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 /
77RUN 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
1616RUN touch .Rprofile
Original file line number Diff line number Diff line change 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
44channels :
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
Original file line number Diff line number Diff 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
102102includeConfig ' 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
You can’t perform that action at this time.
0 commit comments