Skip to content

Commit 679e254

Browse files
authored
Merge pull request #212 from ewels/release-1.6.1
Prepare 1.6.1 release
2 parents 6f9b3c8 + 62d07a2 commit 679e254

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
4343
- name: Build new docker image
4444
if: env.MATCHED_FILES
45-
run: docker build --no-cache . -t nfcore/methylseq:dev
45+
run: docker build --no-cache . -t nfcore/methylseq:1.6.1
4646

4747
- name: Pull docker image
4848
if: ${{ !env.MATCHED_FILES }}
4949
run: |
5050
docker pull nfcore/methylseq:dev
51-
docker tag nfcore/methylseq:dev nfcore/methylseq:dev
51+
docker tag nfcore/methylseq:dev nfcore/methylseq:1.6.1
5252
5353
- name: Install Nextflow
5454
env:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# nf-core/methylseq
22

3-
## v1.7dev
3+
## [v1.6.1](https://github.com/nf-core/methylseq/releases/tag/1.6.1) - 2021-05-08
44

55
### Pipeline Updates
66

Dockerfile

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

1515
# Add conda installation dir to PATH (instead of doing 'conda activate')
16-
ENV PATH /opt/conda/envs/nf-core-methylseq-1.7dev/bin:$PATH
16+
ENV PATH /opt/conda/envs/nf-core-methylseq-1.6.1/bin:$PATH
1717

1818
# Dump the details of the installed packages to a file for posterity
19-
RUN conda env export --name nf-core-methylseq-1.7dev > nf-core-methylseq-1.7dev.yml
19+
RUN conda env export --name nf-core-methylseq-1.6.1 > nf-core-methylseq-1.6.1.yml

environment.yml

Lines changed: 1 addition & 1 deletion
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-methylseq-1.7dev
3+
name: nf-core-methylseq-1.6.1
44
channels:
55
- conda-forge
66
- bioconda

nextflow.config

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

8787
// Container slug. Stable releases should specify release tag!
8888
// Developmental code should specify :dev
89-
process.container = 'nfcore/methylseq:dev'
89+
process.container = 'nfcore/methylseq:1.6.1'
9090

9191
// Load base.config by default for all pipelines
9292
includeConfig 'conf/base.config'
@@ -193,7 +193,7 @@ manifest {
193193
description = 'Methylation (Bisulfite-Sequencing) Best Practice analysis pipeline, part of the nf-core community.'
194194
mainScript = 'main.nf'
195195
nextflowVersion = '>=20.07.1'
196-
version = '1.7dev'
196+
version = '1.6.1'
197197
}
198198

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

0 commit comments

Comments
 (0)